在这里我们可以得到 x,y,h 和 w。然后您可以将这些值分配给四个不同的隐藏输入字段,例如:
<input type="hidden" name="x1" value="" id="x1" />
<input type="hidden" name="y1" value="" id="y1" />
<input type="hidden" name="x2" value="" id="x2" />
<input type="hidden" name="y2" value="" id="y2" />
<input type="hidden" name="w" value="" id="w" />
<input type="hidden" name="h" value="" id="h" />
像这样并使用表单操作,您可以在操作页面获取所有值\
$x1 = $_POST["x1"];
$y1 = $_POST["y1"];
$x2 = $_POST["x2"];
$y2 = $_POST["y2"];
$w = $_POST["w"];
$h = $_POST["h"];
使用一些 php 图像函数,我们可以裁剪图像
imagecreatetruecolor();
imagecopyresampled();
imagegif() 或 imagejpeg() 或 imagepng ()
我想这些已经可以知道这些基本的php函数以及如何使用了 谢谢