Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> PHP

จะปรับขนาดภาพใน PHP ได้อย่างไร?


รูปภาพสามารถปรับขนาดได้โดยใช้ฟังก์ชัน ImageMagick หรือ GD หากใช้ฟังก์ชันของ GD ขนาดของไฟล์ภาพจะลดลงเมื่อสุ่มตัวอย่างภาพจากกล้องดิจิตอลดิบ เราจะมาดูกันว่า GD สามารถใช้ปรับขนาดรูปภาพได้อย่างไรในโค้ดด้านล่าง

function image_resize($file_name, $width, $height, $crop=FALSE) {
   list($wid, $ht) = getimagesize($file_name);
   $r = $wid / $ht;
   if ($crop) {
      if ($wid > $ht) {
         $wid = ceil($wid-($width*abs($r-$width/$height)));
      } else {
         $ht = ceil($ht-($ht*abs($r-$w/$h)));
      }
      $new_width = $width;
      $new_height = $height;
   } else {
      if ($width/$height > $r) {
         $new_width = $height*$r;
         $new_height = $height;
      } else {
         $new_height = $width/$r;
         $new_width = $width;
      }
   }
   $source = imagecreatefromjpeg($file_name);
   $dst = imagecreatetruecolor($new_width, $new_height);
   image_copy_resampled($dst, $source, 0, 0, 0, 0, $new_width, $new_height, $wid, $ht);
   return $dst;
}
$img_to_resize = image_resize(‘path-to-jpg-image’, 250, 250);