PHP 對 透明背景的圖片 做縮圖

PHP 對 透明背景的圖片 要做縮圖, 要如何做? (限 png 和 gif)

  • 註1: 透明背景、透明底圖的圖片, 沒特別處理, 會變成一片黑.
  • 註2: 要等比例縮圖, 請搭配此篇程式做修改: PHP 等比例縮圖程式 (下述程式參數同此文, 就不多加解釋)

PHP 對 透明背景的圖片 做縮圖

透明背景處理主要要靠下述幾行:

  1. <?php
  2. // imagealphablending($image_new, false);
  3. imagesavealpha($image_new, true);
  4. $color = imagecolorallocatealpha($image_new, 0, 0, 0, 127);
  5. imagefill($image_new, 0, 0, $color);
  6. ?>

這邊直接把範例程式寫出來, 直接使用即可.

  1. <?php
  2. function image_resize_transparent($from_filename, $save_filename, $new_width = 400, $new_height = 300)
  3. {
  4. // 透明背景只有 png 和 gif 支援
  5. $allow_format = array('png', 'gif');
  6. $sub_name = $t = '';
  7. // Get new dimensions
  8. $img_info = getimagesize($from_filename);
  9. $width    = $img_info['0'];
  10. $height   = $img_info['1'];
  11. $mime     = $img_info['mime'];
  12. list($t, $sub_name) = explode('/', $mime);
  13. if (!in_array($sub_name, $allow_format))
  14. return false;
  15. // Resample
  16. $image_new = imagecreatetruecolor($new_width, $new_height);
  17. // $function_name: set function name
  18. //   => imagecreatefrompng, imagecreatefromgif
  19. // $sub_name = png, gif
  20. $function_name = 'imagecreatefrom' . $sub_name;
  21. $image = $function_name($from_filename); //$image = imagecreatefrompng($from_filename);
  22. // 透明背景
  23. // imagealphablending($image_new, false);
  24. imagesavealpha($image_new, true);
  25. $color = imagecolorallocatealpha($image_new, 0, 0, 0, 127);
  26. imagefill($image_new, 0, 0, $color);
  27. imagecopyresampled($image_new, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
  28. // return imagepng($image_new, $save_filename);
  29. $function_name = 'image' . $sub_name;
  30. return $function_name($image_new, $save_function);
  31. }
  32. ?>

使用範例: image_resize_transparent('logo.png', 'logo_200x150.png', 200, 150);

作者: Tsung

對新奇的事物都很有興趣, 喜歡簡單的東西, 過簡單的生活.

發表迴響

這個網站採用 Akismet 服務減少垃圾留言。進一步了解 Akismet 如何處理網站訪客的留言資料