【发布时间】:2016-10-18 22:47:40
【问题描述】:
我正在使用代码进行裁剪
$filename = "thimg.jpg";
// Get dimensions of the coriginal image
list($width, $height) = getimagesize($filename);
// Resample the image
$canvas = imagecreatetruecolor('759', '599');
$current_image = imagecreatefromjpeg($filename);
imagecopy($canvas, $current_image, 0, 0, $width/8, $height/8, '759', '599');
imagejpeg($canvas, $filename.'_cropped.jpg', 100);
chmod($filename.'_cropped.jpg', 0644);
unlink($filename);
但它在图像的左侧而不是中间被裁剪。
请提供建议。
【问题讨论】:
标签: php thumbnails gd crop image-uploading