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