我正在使用JCrop来获取要裁剪的图像的尺寸。我有获取尺寸设置的代码:
function updateCoordinates(c) {
console.log(c)
$('#image_x').val(c.x);
$('#image_x2').val(c.x2);
$('#image_y').val(c.y);
$('#image_y2').val(c.y2);
$('#image_w').val(c.w);
}
$('#jcrop_target').Jcrop({
aspectRatio : 2 / 1,
onSelect : updateCoordinates,
onChange : updateCoordinates
});
变量'c'具有值c.x,c.x2,c.y,c.y2和c.w.我猜测c.w = width,c.x = x坐标和c.y = y坐标,但我如何获得图像的高度?我很想把这些值传递给PHP Imagick cropping。
<?php
$picture = new Imagick($this -> getOriginalUrl());
$picture->cropImage($width, $height, $x, $y);
我觉得我错过了一些明显的东西。
答案 0 :(得分:0)
c.y2 - c.y给出了裁剪区域的高度。