この記事では主に、PNG 透明画像をサポートする php 生成サムネイルの共有について紹介します。この記事のコードは、サムネイルの生成をサポートする GD2 グラフィック ライブラリに基づいています。 PNG 透過画像を必要としている友達はそれを参照してください
注: この機能は GD2 グラフィックス ライブラリに依存します
最近、PHP を使用してサムネイルを生成したいと思い、オンラインで検索したところ、次の記事を見つけました: PHP は画像のサムネイルを生成します
試してみたところ、次の問題が見つかりました:
1. PNG画像から生成されたサムネイルはjpg形式です
2. PNG画像から生成されたサムネイルには透明(半透明)効果はありません(背景が黒で塗りつぶされています)
3. コード構文は比較的古いです
そのため、このバージョンをベースに単純に修正および最適化しました。
PHP生成サムネイルクラス
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 |
/* * 説明: 画像のサイズ変更(png、jpg、gif) * 著者: 10年後のルー兄弟 *日付:2014.11.13 */ クラス ResizeImage { //画像タイプ プライベート $type; //実際の幅 プライベート $width; //実際の身長 プライベート$身長; //幅を変更しました プライベート $resize_width; //変更後の身長 プライベート $resize_height; //画像をトリミングするかどうか プライベート$カット; //ソース画像 プライベート $srcimg; //ターゲット画像アドレス プライベート $dstimg; //一時的に作成された画像 プライベート$im;
関数 __construct($imgPath, $width, $height, $isCut, $savePath) { $this->srcimg = $imgPath; $this->resize_width = $width; $this->resize_height = $height; $this->cut = $isCut; //写真の種類
$this->type = strto lower(substr(strrchr($this->srcimg,"."),1));
//画像を初期化します $this->initi_img(); //ターゲット画像アドレス $this -> dst_img($savePath); //-- $this->width = 画像x($this->im); $this->高さ = imagey($this->im); //画像を生成する $this->newimg(); ImageDestroy ($this->im); }
プライベート関数 newimg() { //変更された画像の割合 $resize_ratio = ($this->resize_width)/($this->resize_height); //実際の画像の比率 $ratio = ($this->幅)/($this->高さ); if($this->cut) { //画像をトリミング $newimg = imagecreatetruecolor($this->resize_width,$this->resize_height); if($this->type=="png") { imagefill($newimg, 0, 0, imagecolorallocatealpha($newimg, 0, 0, 0, 127)); } if($ratio>=$resize_ratio) { //高優先度 imagecopyresampled($newimg, $this->im, 0, 0, 0, 0, $this->resize_width,$this->resize_height, (($this->height)*$resize_ratio), $これ->高さ); } 他 { //幅を優先 imagecopyresampled($newimg, $this->im, 0, 0, 0, 0, $this->resize_width, $this->resize_height, $this->width, (($this->width )/$resize_ratio)); } } 他 { //トリミングなし if($ratio>=$resize_ratio) { $newimg = imagecreatetruecolor($this->resize_width,($this->resize_width)/$ratio); if($this->type=="png") { imagefill($newimg, 0, 0, imagecolorallocatealpha($newimg, 0, 0, 0, 127)); } imagecopyresampled($newimg, $this->im, 0, 0, 0, 0, $this->resize_width, ($this->resize_width)/$ratio, $this->width, $this- >身長); } 他 { $newimg = imagecreatetruecolor(($this->resize_height)*$ratio,$this->resize_height); if($this->type=="png") { imagefill($newimg, 0, 0, imagecolorallocatealpha($newimg, 0, 0, 0, 127)); } imagecopyresampled($newimg, $this->im, 0, 0, 0, 0, ($this->resize_height)*$ratio, $this->resize_height, $this->width, $this- >身長); } } if($this->type=="png") { imagesavealpha($newimg, true); imagepng ($newimg,$this->dstimg); } 他 { imagejpeg ($newimg,$this->dstimg); } }
//画像を初期化します プライベート関数 initi_img() { if($this->type=="jpg") { $this->im = imagecreatefromjpeg($this->srcimg); } if($this->type=="gif") { $this->im = imagecreatefromgif($this->srcimg); } if($this->type=="png") { $this->im = imagecreatefrompng($this->srcimg); } }
//画像ターゲットアドレス プライベート関数 dst_img($dstpath) { $full_length = strlen($this->srcimg);
$type_length = strlen($this->type); $name_length = $full_length-$type_length;
$name = substr($this->srcimg,0,$name_length-1); $this->dstimg = $dstpath; } } ?> |
使用する
使用する場合は、クラスのコンストラクターを直接呼び出すだけです。コンストラクターは次のとおりです。
$resizeimage = 新しいサイズ変更画像($imgPath, $width, $height, $isCut, $savePath);パラメータ
$imgPath: 元の画像アドレス
$height: サムネイルの高さ
$isCut: カットするかどうか、ブール値
$savePath: サムネイルのアドレス (元の画像のアドレスと同じでも構いません)
例
1 2 3 4 5 6 7 8 9 10
|
「ResizeImage.php」をインクルードします;
//jpg $jpgResize = new ResizeImage("img/test_1920_1200.jpg", 320, 240, false, "img/test_320_240.jpg");
//png $pngResize = new ResizeImage("img/test_1024_746.png", 320, 240, false, "img/test_320_240.png");
?>
|
。