因為本 blog 的頻寬有限, 想要貼圖又不太敢貼, 所以我的 blog 一直都很少有在貼圖(放在 flickr 或 其它地方 又怕何時不見了就麻煩了).
今天為了要貼一張圖, 但是看 166kb 實在蠻大的, Gimp 等的縮圖縮起來又糢糊不清(應該是我不會用.. Orz), 還是自己寫個簡單的縮圖比較簡單~ 🙂
總之效果還不錯就好了~
檔案名稱: img_resize.php
<?php
/**
* Usage:
* php img_resize.php filename.png > xxx.png
* php img_resize.php filenmae.jpg > xxx.jpg
* php img_resize.php filenmae.gif > xxx.gif
*
* Author: Tsung
* URL: https://blogs.longwin.com.tw/lifetype/img_resize.phps
*/
$percent = 0.5;// get filename
$filename = $argv[1];// get sub filename, ex: jpg,jpeg,png,gif
$sub_name = trim(substr($filename, -4), '.');
if (strtolower($sub_name) == 'jpg') { // jpg use jpeg header & function
$sub_name='jpeg';
}// Content type, ex: header('Content-type: image/jpeg');
header('Content-type: image/'.$sub_name);// Get new dimensions
list($width, $height) = getimagesize($filename);
$new_width = $width * $percent;
$new_height = $height * $percent;// Resample
$image_p = imagecreatetruecolor($new_width, $new_height);
// $function_name: set function name
// imagecreatefromjpeg, imagecreatefrompng, imagecreatefromgif
$function_name = 'imagecreatefrom'.$sub_name;
$image = $function_name($filename); //$image = imagecreatefromjpeg($filename);
imagecopyresampled($image_p, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);// Output
imagejpeg($image_p, null, 100);
?>
使用方法:
- php img_resize.php filename.png > xxx.png
- php img_resize.php filenmae.jpg > xxx.jpg
- php img_resize.php filenmae.gif > xxx.gif
使用函式:
- bool imagecopyresized ( resource dst_image, resource src_image, int dst_x, int dst_y, int src_x, int src_y, int dst_w, int dst_h, int src_w, int src_h )
- bool imagecopyresampled ( resource dst_image, resource src_image, int dst_x, int dst_y, int src_x, int src_y, int dst_w, int dst_h, int src_w, int src_h )
函式參數說明:
- dst_image : 輸出目標檔案
- src_image : 來源檔案
- dst_x: 目標檔案開始點的 x 座標
- dst_y: 目標檔案開始點的 y 座標
- src_x: 來源檔案開始點的 x 座標
- src_y: 來源檔案開始點的 y 座標
- dst_w: 目標檔案的長度
- dst_h: 目標檔案的高度
- src_w: 來源檔案的長度
- src_h: 來源檔案的高度
註: imagecopyresampled(), imagecopyresized() 兩個的縮圖品質, imagecopyresampled() 縮起來比較好.