如何使用给定的X,Y,Width和Height坐标在php中裁剪图像

时间:2015-01-05 10:22:46

标签: php image crop

我正在尝试使用给定的X,Y,Width和Height坐标裁剪原始图像。 但它没有正确裁剪图像。

这是我的代码

    header('Content-type: image/jpeg');
    $source_x = $_POST['x'];
    $source_y = $_POST['y'];
    $width = $_POST['w'];
    $height = $_POST['h'];

    $dest = imagecreatetruecolor($width, $height);

    $src = imagecreatefromjpeg('path of the orignal Image');

    imagecopy($dest, $src, 30, 30, $source_x, $source_y, $width, $height);

    $cropped_image = "Path where to store the cropped image";

    imagejpeg($dest, $cropped_image, 100);

使用上面的代码,我可以裁剪图像,但它不会在给定的坐标中裁剪。

任何帮助都会有用。

0 个答案:

没有答案