我可以从 php 3d 将图像在 Y 轴上旋转 10-15 度吗?
从 我想创建
这可以用 php 实现吗?
From I want to create
Is this possible with php?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
从 我想创建
这可以用 php 实现吗?
From I want to create
Is this possible with php?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
使用 PHP GD 设置图像的视角:
http://www.jqueryit.com/2010/03/set-perspective-of-image-using-php-gd.html
如果您有 Imagemagick:
http://php.net/manual/en/function.imagick- Distortionimage.php
Set Perspective of an Image Using PHP GD:
http://www.jqueryit.com/2010/03/set-perspective-of-image-using-php-gd.html
If you have Imagemagick:
http://php.net/manual/en/function.imagick-distortimage.php
您可以使用 imagemagick。 这里是此类处理的 ImageMagick 文档。
You can, with imagemagick. Here is the ImageMagick documentation for that kind of processing.
您可以通过放置一个具有透明中心的白色遮罩(与图像上所需的旋转相对应)来“伪造”效果。
You could "fake" the effect by putting a white mask with transparent center corresponding to the desired rotation over the image.