请教,如何用GD生成透明背景图片?50分相送

用Png org Gif?
并且好像用Png生成的透明背景图片不能copy到别的图片上去?
---------------------------------------------------------------

1   
2header ("Content-type: image/gif"); // 有些浏览器不能识别image/png,这样写通用点   
3$im = imagecreate (200,300);   
4$background_color = ImageColorAllocate($im, 0,255,0); // 指派一个绿色   
5imagecolortransparent($im,$background_color); // 设置为透明色,若注释掉该行则输出绿色的图   
6imagepng ($im);   
7imagedestroy ($im);   
Published At
Categories with Web编程
comments powered by Disqus