所以这是包含矩形的原始图片,我想创建一个裁剪的图片
这就是我在裁剪之后得到的
因此可以看出,新图像具有正确的尺寸,但正在裁剪错误的部分。 这是JS:
$(document).ready(function()
{
$('#cropimage').Jcrop(
{
aspectRatio: 3 / 4,
maxSize: [150,200],
onSelect: updateCoords
});
});
function updateCoords(c)
{
$('#x').val(c.x);
$('#y').val(c.y);
$('#w').val(c.w);
$('#h').val(c.h);
};
这是PHP代码
function crop($_POST)
{
$clipX = (int)$_POST['x'];
$clipY = (int)$_POST['y'];
$filename = (string)$_POST['image'];
$resizedHeight = (int)$_POST['h'];
$resizedWidth = (int)$_POST['w'];
// Original image's details
$original = dirname(__FILE__) . DIRECTORY_SEPARATOR . 'images/user_pictures/' . DIRECTORY_SEPARATOR . $filename;
$dimensions = getimagesize($original);
$old_width = $dimensions[0];
$old_height = $dimensions[1];
// image = original_image
$old_image = call_user_func('imagecreatefrom' . 'jpeg', $original);
// Crop image
if (function_exists('imagecreatetruecolor') && ($new_image = imagecreatetruecolor($resizedWidth, $resizedHeight)))
imagecopyresampled($new_image, $old_image, 0, 0, $clipX, $clipY, $resizedWidth, $resizedHeight, $old_width, $old_height);
imagejpeg($new_image,'images/user_pictures/'.$this->getUserID().'_picture.jpg');
}
我之前从未使用过那些php函数,但我已经阅读了一些教程,我没有看到任何错误。 但必须至少有一个......我做错了什么? 原始图像似乎无论出于何种原因都会重新调整大小。
答案 0 :(得分:2)
如果你想基于(x,y,w,h)(10,15,30,35)进行裁剪,那么你的函数将是:
imagecopyresampled ( $dst_image , $src_image , 0, 0 , 10 , 15 , 30-10 , 35-15 , 30-10 , 35-15 )
因为您要将20x20从原始图像复制到新图像,所以这些尺寸是新的,dst_w,dst_h以及src_w,src_h。
$ old_width和$ old_height现在是原始图像的完整宽度,而它们应该是裁剪部分的宽度和高度。
$old_width = $resizedWidth;
$old_height = $resizedHeight;