我正在尝试使用jcrop保存裁剪的图像,基于x,y,w,h。 我发送到我的PHP文件,轴x,y和宽度/高度,但裁剪区域是错误的。
这是我的php函数
$axis_x = $_POST["x"];
$axis_y = $_POST["y"];
$width = $_POST["w"];
$height = $_POST["h"];
$path_foto = "imgs/3.jpg";
$targ_w = $width;
$targ_h = $height;
$jpeg_quality = 90;
$src = $path_foto;
$img_r = imagecreatefromjpeg($src);
$dst_r = ImageCreateTrueColor($targ_w, $targ_h);
imagecopyresampled($dst_r, $img_r, 0, 0, $axis_x, $axis_y, $width, $targ_w, $targ_h, $height);
imagejpeg($dst_r, $path_foto, $jpeg_quality);
这个坐标由jcrop设置,每当图像被重新显示时隐藏在输入中。 问题始终是错误的区域。
我做错了什么?
答案 0 :(得分:1)
(不知道结果有什么“错误”,很难为您提供帮助。)
但是您正在/可能遇到的一些明显问题:
调用imagecopyresampled()
时参数的顺序错误:最后4个参数应为$targ_w, $targ_h, $width, $height
Ref
“坐标是指左上角。” Ref
这意味着y = 0
在图像的顶部,而不是底部。因此,如果您的$_POST["y"]
是图片底部的像素数,则需要从原始图片的高度中减去该值,然后它才能按预期工作。
接受代码,并使用一些硬编码的值:
<?php
$axis_x = 115;
$axis_y = 128;
$width = 95;
$height = 128;
$path_foto = "/Users/gb/Downloads/original.jpg";
$targ_w = $width;
$targ_h = $height;
$jpeg_quality = 90;
$src = $path_foto;
$img_r = imagecreatefromjpeg($src);
$dst_r = ImageCreateTrueColor($targ_w, $targ_h);
imagecopyresampled($dst_r, $img_r, 0, 0, $axis_x, $axis_y, $targ_w, $targ_h, $width, $height);
imagejpeg($dst_r, "/Users/gb/Downloads/cropped.jpg", $jpeg_quality);