勉強したことのメモ

Webエンジニア / プログラマが勉強したことのメモ。

PHPで画像を上下反転させ保存する

   2024/01/12  PHP

やりたかった事は、下記の通り。

・既にフォルダに保存されている画像を上下反転させる
・上下反転させた画像を上書き保存する

■ソース
<?
error_reporting(E_ALL & ~E_NOTICE);
$img_fir             = './img/';
$file_name         = 'test.jpg';
$img_url         = $img_fir . $file_name;

if ($_GET['mode'] == 'image_return') {
$source             = imagecreatefromjpeg($img_url);
$degrees         = 180;
$rotate             = imagerotate($source,$degrees, 0);
imagejpeg($rotate,$img_url);
header("Location:./index.php");
}
?>
<html>
<head>
<script type="text/javascript">
function image_return () {
location.href = './index.php?mode=image_return';
}
</script>
</head>
<body>
<img src="<?=$img_url . '?stamp=' . time();?>" width="200px" height="150px"><br>
<input type="button" onClick="return image_return();" value="上下反転">
</body>
</html>

■関数
imagecreatefromjpeg(画像名)
http://php.net/manual/ja/function.imagecreatefromjpeg.php
新しい画像をファイルあるいは URL から作成する

imagerotate(画像名、回転角度、回転後に重ねられない部分の色)
http://php.net/manual/ja/function.imagerotate.php
指定された角度で画像を回転する

imagejpeg(保存したい画像、保存するパス)
http://php.net/manual/ja/function.imagejpeg.php
画像をブラウザあるいはファイルに出力する

 - PHP

  関連記事

formのinput="file"でディレクトリを選択させ、ディレクトリ内のファイルを全てアップロードする方法

フォームで複数のファイルをアップロードしたい場合、input="file"を複数 ...

PHPで画像を分割し並べ替えて出力したものをJavaScriptで復元する方法

ある電子書籍サイトをブラウザの開発者ツールで見てみたところ、PHPでページ画像を ...

jQuery.uploadでリアルタイムプレビュー

やりたい事は、 ・<input type="file">で画像を選択 ...

MySQLとPHPの「image-comparator」ライブラリを使用して類似画像検索を実装する方法

先日PHPで画像を比較して類似度を算出する「image-comparator」ラ ...

フォームからアップロードした画像にPHPで任意のテキストを追加する方法

以前フォームから送られてきた画像に対してサイトロゴみたいなロゴ画像を追加する記事 ...