如何使用PHP正确裁剪图像?

时间:2015-11-18 12:09:14

标签: php image

我正在尝试在PHP上裁剪图片。我看到在PHPimagecrop上有一个功能。这是我尝试裁剪图像的代码。

$image = imagecreatefromjpeg(//Path of the image);
$croppedImage = imagecrop($image, array("x"=>0,"y"=>0,"width"=>100,"height"=>100));
imagejpeg($croppedImage, //Path in which the image will be stored); 

在这里,我希望图像的裁剪从图像的左角开始,并获得我放在上面的宽度和高度值。

但它只是调整我的图像大小,而不是裁剪它。我做错了什么?

修改

我还尝试使用函数imagecopyresampled。这是我尝试过的:

dst_image(Destination image link resource) = newImage; //Here the new image that I want to create.

src_image(Source image link resource) = image; //Here the original image.

//Here 0,0 because I want that the new image crop starts in the left corner of the original image.

dst_x(x-coordinate of destination point) = 0;

dst_y(y-coordinate of destination point) = 0;

//Here 0,0 because I want that the crop starts on the 0,0 of the original image

src_x(x-coordinate of source point) = 0;

src_y(y-coordinate of source point) = 0;

dst_w(Destination width) = 150; //The new width of the crop image.

dst_h(Destination height)  = 150; //The new height of the crop image.

src_w(Source width) = 500; //The original width of the image.

src_h(Source height) = 500; //The original height of the image.

所以最后这个功能就像:

$b = imagecopyresampled ($dst_image, $src_image, $dst_x, $dst_y, $src_x, $src_y, $dst_w , $dst_h , $src_w , $src_h ); 

我在这个函数中遇到问题这就是为什么要避免其余的(保存和imagetruecolor以及其余的...)

这个函数给我预期的结果,但新图像是黑色的,为什么?

提前致谢!

3 个答案:

答案 0 :(得分:0)

试试这个:

$dst_x = 0;   // X-coordinate of destination point
$dst_y = 0;   // Y-coordinate of destination point
$src_x = 100; // Crop Start X position in original image
$src_y = 100; // Crop Srart Y position in original image
$dst_w = 160; // Thumb width
$dst_h = 120; // Thumb height
$src_w = 260; // $src_x + $dst_w Crop end X position in original image
$src_h = 220; // $src_y + $dst_h Crop end Y position in original image

// Creating an image with true colors having thumb dimensions (to merge with the original image)
$dst_image = imagecreatetruecolor($dst_w, $dst_h);
// Get original image
$src_image = imagecreatefromjpeg('images/cropped_whatever.jpg');
// Cropping
imagecopyresampled($dst_image, $src_image, $dst_x, $dst_y, $src_x, $src_y, $dst_w, $dst_h, $src_w, $src_h);
// Saving
imagejpeg($dst_image, 'images/crop.jpg');

答案 1 :(得分:0)

或者,您可以使用imagick的imagecrop函数。

答案 2 :(得分:0)

最后,我得到了解决问题的方法。我必须使用bsondump yourfile.bson | head dst_w的相同值。与src_wdst_h相同。它有效!!

最终解决方案如下:

src_h