この記事の例では、PHP で PNG 画像を拡大縮小する方法を説明します。参考のためにみんなで共有してください。具体的な実装方法は以下の通りです
-
- functionsmart_resize_image( $file, $width = 0, $height = 0, $proportional = false, $output = 'file', $delete_original = true, $use_linux_commands = false )
- {
- if ( $height <= 0 && $width <= 0 ) {
- return false;
- }
- $info = getimagesize($file);
- $image = '';
- $final_width = 0;
- $final_height = 0;
- list ($width_old, $height_old) = $info;
- if ($proportional) {
- if ($width == 0) $factor = $height/$height_old;
- elseif ($height == 0) $factor = $width /$width_old;
- else $factor = min ($width / $width_old, $height / $height_old);
- $final_width =round ($width_old * $factor);
- $final_height =round ($height_old * $factor);
- }
- else {
- $final_width = ( $width <= 0 ) ? $width_old : $width;
- $final_height = ( $height <= 0 ) : $height;
- }
- switch ($info) [2] ) {
- case IMAGETYPE_GIF:
- $image = imagecreatefromgif($file);
- ブレーク;
- case IMAGETYPE_JPEG:
- $image = imagecreatefromjpeg($file);
- ブレーク;
- case IMAGETYPE_PNG:
- $image = imagecreatefrompng($ファイル);
- ブレーク;
- デフォルト:
- return false;
- }
- $image_resize = imagecreatetruecolor( $final_width, $final_height );
- if ( ($info[2] == IMAGETYPE_GIF) || ($info[2] = = IMAGETYPE_PNG) ) {
- $trnprt_indx = imagecolortransparent($image);
- // 特定の透明色がある場合
- if ($trnprt_indx >= 0) {
- // 元の画像の透明色の RGB 値を取得します
- $trnprt_color = imagecolorsforindex($image, $trnprt_indx);
- // 新しい画像リソースに同じ色を割り当てます
- $trnprt_indx = imagecolorallocate($image_resize, $trnprt_color['red'], $trnprt_color['green'], $trnprt_color[ 'blue']);
- // 新しい画像の背景を割り当てられた色で完全に塗りつぶします。
- imagefill($image_resize, 0, 0, $trnprt_indx);
- // 新しい画像の背景色を透明に設定します
- imagecolortransparent( $image_resize, $trnprt_indx);
- }
- // まだ割り当てられていない PNG には必ず背景色を透明にします
- elseif ($info[2] == IMAGETYPE_PNG) {
- // 透明ブレンドを (一時的にオフにします) )
- imagealphablending($image_resize, false);
- // 画像の新しい透明色を作成します
- $color = imagecolorallocatealpha($image_resize, 0, 0, 0, 127);
- // 新しい画像の背景を完全に塗りつぶします割り当てられた color.
- imagefill($image_resize, 0, 0, $color);
- // 透明ブレンドを復元
- imageavealpha($image_resize, true);
- }
- }
- imagecopyresampled($image_resize, $image, 0, 0, 0 , 0, $final_width, $final_height, $width_old, $height_old);
- if ( $delete_original ) {
- if ( $use_linux_commands )
- exec('rm '.$file);
- else
- @unlink($file);
- }
- switch ( strto lower($output) ) {
- case 'browser':
- $mime = image_type_to_mime_type($info[2]);
- header("Content-type: $mime");
- $output = NULL;
- ブレーク;
- case 'file':
- $output = $file;
- ブレーク;
- case 'return':
- return $image_resize;
- ブレーク;
- デフォルト:
- ブレーク;
- }
- switch ($info[2] ) {
- case IMAGETYPE_GIF:
- imagegif($image_resize, $output);
- ブレーク;
- case IMAGETYPE_JPEG:
- imagejpeg($image_resize, $output);
- ブレーク;
- case IMAGETYPE_PNG:
- imagepng($image_resize, $output);
- Break;
- デフォルト:
- return false;
- }
- return true;
- }
-
-
コードをコピー
この記事が皆さんの PHP プログラミング設計に役立つことを願っています。
|