如何使用PHP,倾斜图像等制作照片效果?

时间:2010-11-03 06:50:28

标签: php image-processing

如何使图像效果在PHP中旋转和倾斜图像?

我想知道神奇的底层内容,我应该研究什么样的php扩展并学习如何实现这一点,任何好的在线教程都可以制作出酷炫的图像效果?

4 个答案:

答案 0 :(得分:1)

对于图像效果并将图像叠加在另一个上面:

http://php.net/manual/en/book.imagick.php

http://php.net/manual/en/book.image.php

答案 1 :(得分:1)

另请参阅ezcomponents

http://ezcomponents.org/docs/tutorials/ImageAnalysis http://ezcomponents.org/docs/tutorials/ImageConversion

有一些非常强大的图像分析和转换方法。

答案 2 :(得分:1)

正如stillstanding answer所说,您可以同时使用GD或imageMagick来处理图像。

扭曲我发现的图像:
http://php.net/manual/en/function.imagick-distortimage.php

用GD来扭曲图像看看这篇文章:
How would I skew an image with GD Library?

答案 3 :(得分:1)

我在这里看到了一个显示13个php图像效果的帖子,你可以尝试看看它是否是你需要的东西。

http://thetutlage.com/post=TUT160

http://www.thetutlage.com/demo/imageManipulation/example1.php

相关问题