使用 PHP 进行 3D 纹理处理
我想生成这个 http://de.novumpro.com/typo3temp/pics/0512014950 .jpg http://de.novumpro.com/typo3temp/pics/0512014950.jpg,带有 PHP 和两个源图像:灰色书籍背景和书籍封面纹理(正面,未旋转)。
使用 GD 组合两个图像不会有问题,但我需要先 3D 旋转书籍封面。
Image_3D 不进行纹理处理。
ImageMagic 会帮助我吗?
还有其他选择吗?
I want to generate this http://de.novumpro.com/typo3temp/pics/0512014950.jpg http://de.novumpro.com/typo3temp/pics/0512014950.jpg with PHP and two source images: gray book background and book cover texture (front-facing, not rotated).
Combining two images would not be a problem with GD, but I need to 3D rotate the book cover first.
Image_3D doesn't do texturing.
Will ImageMagic help me?
Any other options?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要做的就是倾斜图像,例如 我会怎样使用 GD 库倾斜图像?
all you need to do is skew the image, like How would I skew an image with GD Library?
真实 ImageMagick 不可能实现 3D,但伪造它(即倾斜和旋转位图以使其适合)是可能的。例如,请参阅此 IM 论坛帖子。
另请参阅 IM 示例书中的扭曲章节。
Real 3D is out of the question with ImageMagick, but faking it (i.e. skewing and rotating bitmaps so they fit) is possible. See e.g. this IM Forum thread.
See also the distortion chapter in the IM examples book.