1

我想要做的是调整大小并裁剪上传图像的中心。到目前为止,我已经将它调整到图像大小的位置,仅此而已。我知道 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 功能。

谢谢你。

4

2 回答 2

0

看看这堂课。它包含 GD2,就像您提供的示例一样,它还具有其他用于生成缩略图的调整大小算法。

于 2012-04-17T20:39:45.437 回答
0

这是我使用 imagemagick/php 编写的一个函数:检查一下:

stackoverflow.com/questions/20927238

于 2014-01-05T01:19:14.050 回答