php 多张图片合并成一张,如何处理?谢谢!

解决方案 »

  1.   

    如果可以用PS的话,我就不用在这里发帖求救了,呵呵!
    我正在研究用imagemagick是否能解决!
      

  2.   

    Yeah it's reasonably simple.You just use imagecopy() or imagecopyresized() to copy an image (or part of an image) onto another one.If you are working with lots of big images then it can be very memory intensive, so you may need to increase PHP's memory_limit with ini_set() to at least 64MB.http://forums.devshed.com/php-development-5/how-do-i-merge-various-images-into-one-using-gd-502604.html
      

  3.   

    这个没什么啊,如果说你要是用PHP做类似于PS中的图像合成效果的话,我认为也不是什么难事,你可以试着模拟QQ秀的合成,如果说是简单的将三张图片合成到一张图片里面,没什么难度。