如何在模型中插入图像?

时间:2018-08-30 06:17:42

标签: svg mockups

在笔记本电脑样机或电话样机或其他任何样机中,我想插入外部图像,是否有像我的想法一样的脚本PHP或javascript?我已经发现一些网站在做同样的事情。我该如何建造?谁能给我个主意?

我的示例网站是http://magicmockups.com/mockup/10/

2 个答案:

答案 0 :(得分:0)

您可以使用PHP图像处理库,例如PHP GDImageMagick

答案 1 :(得分:0)

在测量两个图像的角点后,可以使用Imagemagick的透视变形。

背景:

enter image description here

图片:

enter image description here

命令(Unix语法):

convert background.png \
\( monet2.jpg -virtual-pixel none +distort perspective "0,0 317,99  265,0 540,85  265,333 594,426  0,333 342,446" \) \
-layers merge +repage monet2_background.jpg


如果在Windows上,则将\之前(和before)删除,并将\的行尾更改为^。

结果: enter image description here

您可以从PHP exec()运行此代码,或使用PHP Imagick语法对其进行重新编码。