使用PHP(首选)或Python在模式图像上应用透视图

时间:2016-05-21 07:47:35

标签: php python imagemagick php-gd

尝试使用原始图像的全比例(高度 - 宽度)来实现图像透视。

PHP GD image perspective 以上链接是我们问题的最接近的解决方案,但可见图案的高宽比从原始图像变化,因为在某处留下了透明区域。

我们真正需要的是用相同的模式透视填充最终图像的透明部分。enter image description here

1 个答案:

答案 0 :(得分:0)

您可以使用变量而不是固定尺寸,但我会让您对其进行排序

convert "input.jpg" "input.jpg" +append -matte -virtual-pixel transparent -distort Perspective "0,0 400,-200   1146,0 746,-200   1146,412 1146,412   0,412 0,412 " -gravity south -crop 573x412+0+0 +repage "output.jpg"

enter image description here