ホームページ  >  記事  >  バックエンド開発  >  PNG 画像のスケーリングを実装する PHP メソッド (透明な背景をサポート)

PNG 画像のスケーリングを実装する PHP メソッド (透明な背景をサポート)

WBOY
WBOYオリジナル
2016-07-25 08:44:411064ブラウズ

この記事の例では、PHP で PNG 画像を拡大縮小する方法を説明します。参考のためにみんなで共有してください。具体的な実装方法は以下の通りです

  1. functionsmart_resize_image( $file, $width = 0, $height = 0, $proportional = false, $output = 'file', $delete_original = true, $use_linux_commands = false )
  2. {
  3. if ( $height <= 0 && $width <= 0 ) {
  4. return false;
  5. }
  6. $info = getimagesize($file);
  7. $image = '';
  8. $final_width = 0;
  9. $final_height = 0;
  10. list ($width_old, $height_old) = $info;
  11. if ($proportional) {
  12. if ($width == 0) $factor = $height/$height_old;
  13. elseif ($height == 0) $factor = $width /$width_old;
  14. else $factor = min ($width / $width_old, $height / $height_old);
  15. $final_width =round ($width_old * $factor);
  16. $final_height =round ($height_old * $factor);
  17. }
  18. else {
  19. $final_width = ( $width <= 0 ) ? $width_old : $width;
  20. $final_height = ( $height <= 0 ) : $height;
  21. }
  22. switch ($info) [2] ) {
  23. case IMAGETYPE_GIF:
  24. $image = imagecreatefromgif($file);
  25. ブレーク;
  26. case IMAGETYPE_JPEG:
  27. $image = imagecreatefromjpeg($file);
  28. ブレーク;
  29. case IMAGETYPE_PNG:
  30. $image = imagecreatefrompng($ファイル);
  31. ブレーク;
  32. デフォルト:
  33. return false;
  34. }
  35. $image_resize = imagecreatetruecolor( $final_width, $final_height );
  36. if ( ($info[2] == IMAGETYPE_GIF) || ($info[2] = = IMAGETYPE_PNG) ) {
  37. $trnprt_indx = imagecolortransparent($image);
  38. // 特定の透明色がある場合
  39. if ($trnprt_indx >= 0) {
  40. // 元の画像の透明色の RGB 値を取得します
  41. $trnprt_color = imagecolorsforindex($image, $trnprt_indx);
  42. // 新しい画像リソースに同じ色を割り当てます
  43. $trnprt_indx = imagecolorallocate($image_resize, $trnprt_color['red'], $trnprt_color['green'], $trnprt_color[ 'blue']);
  44. // 新しい画像の背景を割り当てられた色で完全に塗りつぶします。
  45. imagefill($image_resize, 0, 0, $trnprt_indx);
  46. // 新しい画像の背景色を透明に設定します
  47. imagecolortransparent( $image_resize, $trnprt_indx);
  48. }
  49. // まだ割り当てられていない PNG には必ず背景色を透明にします
  50. elseif ($info[2] == IMAGETYPE_PNG) {
  51. // 透明ブレンドを (一時的にオフにします) )
  52. imagealphablending($image_resize, false);
  53. // 画像の新しい透明色を作成します
  54. $color = imagecolorallocatealpha($image_resize, 0, 0, 0, 127);
  55. // 新しい画像の背景を完全に塗りつぶします割り当てられた color.
  56. imagefill($image_resize, 0, 0, $color);
  57. // 透明ブレンドを復元
  58. imageavealpha($image_resize, true);
  59. }
  60. }
  61. imagecopyresampled($image_resize, $image, 0, 0, 0 , 0, $final_width, $final_height, $width_old, $height_old);
  62. if ( $delete_original ) {
  63. if ( $use_linux_commands )
  64. exec('rm '.$file);
  65. else
  66. @unlink($file);
  67. }
  68. switch ( strto lower($output) ) {
  69. case 'browser':
  70. $mime = image_type_to_mime_type($info[2]);
  71. header("Content-type: $mime");
  72. $output = NULL;
  73. ブレーク;
  74. case 'file':
  75. $output = $file;
  76. ブレーク;
  77. case 'return':
  78. return $image_resize;
  79. ブレーク;
  80. デフォルト:
  81. ブレーク;
  82. }
  83. switch ($info[2] ) {
  84. case IMAGETYPE_GIF:
  85. imagegif($image_resize, $output);
  86. ブレーク;
  87. case IMAGETYPE_JPEG:
  88. imagejpeg($image_resize, $output);
  89. ブレーク;
  90. case IMAGETYPE_PNG:
  91. imagepng($image_resize, $output);
  92. Break;
  93. デフォルト:
  94. return false;
  95. }
  96. return true;
  97. }
コードをコピー

この記事が皆さんの PHP プログラミング設計に役立つことを願っています。

PHP、png


声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。