我试图弄清楚如何从更小的图像计算全尺寸图像的裁剪坐标,假设全尺寸图像是1775 x 2664,用户在裁剪页面上看到的图像(使用jCrop) )是533 X 800。
较小图像上的裁剪坐标为:20,11,230,305
(从左开始,从顶部开始,从左边开始,从顶部开始)
如何将坐标缩放到完整尺寸的图像。
我需要允许用户在预览页面上选择图像的一部分,然后使用php从全尺寸图像中提取图像的适当部分..
答案 0 :(得分:1)
为您提供一些参考:http://en.wikipedia.org/wiki/Rule_of_three_%28mathematics%29#Rule_of_Three
// assuming fixed ratio on width and height
// which is the case in your example: ~33% for both dimensions
$FULL_WIDTH = 1775;
$SCALED_WIDTH = 533;
$ratio = $SCALED_WIDTH / $FULL_WIDTH;
$scaled_crop_coordinates = array(20, 11, 230, 305);
$full_crop_coordinates = array();
foreach($scaled_crop_coordinates as $val)
{
$full_crop_coordinates[] = floor($val / $ratio);
}
var_dump($full_crop_coordinates);
答案 1 :(得分:0)
应该有效:
left = 20 * (1775/533)
top = 11 * (2664/800)
right = 230 * (1775/533)
bottom = 305 * (2664/800)