尝试调整缩小图像的大小和裁剪图像

时间:2012-04-17 20:33:03

标签: php mysql image resize crop

我要做的是调整大小并裁剪上传图片的中心。到目前为止,我已将它用于调整图像大小的位置。 我知道imagecopy功能是我想要的,我只是无法使用我的功能。

这是我到目前为止所做的。

/* read the source image */
$source_image = imagecreatefromjpeg($src);
$width = imagesx($source_image);
$height = imagesy($source_image);

/* find the "desired height" of this thumbnail, relative to the desired width  */
$desired_height = floor($height*($desired_width/$width));

/* create a new, "virtual" image */
$virtual_image = imagecreatetruecolor($desired_width,$desired_height);

/* copy source image at a resized size */

imagecopyresampled($virtual_image,$source_image,0,0,0,0,$desired_width,$desired_height,$width,$height);

/* create the physical thumbnail image to its destination */
imagejpeg($virtual_image,$dest);

我只需要知道在何处以及如何整合imagecopy功能。

谢谢。

2 个答案:

答案 0 :(得分:0)

看看this class。它结合了GD2,就像你提供的例子一样,还有其他用于缩略图生成的调整大小算法。

答案 1 :(得分:0)

这是我用imagemagick / php写的一个函数来执行此操作:检查出来:

stackoverflow.com/questions/20927238