PHP动态生成gif格式的图像

发布时间:2011年04月12日      浏览次数:722 次
如果你用
int imagecreatefromgif(string filename);
来取出一张 GIF 格式图像,当背景或基本的画布样本使用,在其上绘制图像,请注意:
如果这个文件中没有的色素,你将不能使用。
解决方法,你能用
int imagecreate(int x_size, int y_size);
建立一张全空的图像。在其上绘制图像。将黑色作为透明色。
这个新建的图像要和原图像大小相同,绝对位置相同,将其放在原图像上方,就能了。
<img border="0" src=http://www.sxsky.net/it/html/"1.gif" style="position: absolute; left: 1; top: 1; z-index: 0" width="200" height="300">
原图像文件
<img border="0" src="photo.php" style="position: absolute; left: 1; top: 1; z-index: 1" width="200" height="300">
全空文件 photo.php
photo.php 的代码:
<?php
Header("Content-type: image/gif");
$im = imagecreate(200,300);
$black = ImageColorAllocate($im, 0,0,0);
$red = ImageColorAllocate($im, 255,0,0);
$blue = ImageColorAllocate($im, 0,0,255);
imagerectangle($im,100,200,150,200,$red) ;
imagestring($im,2,120,150,"aaaaaaaa",$blue);
imagecolortransparent($im,$black);
//将黑色作为透明色
ImageGif($im);
ImageDestroy($im);
?>
免责声明:本站相关技术文章信息部分来自网络,目的主要是传播更多信息,如果您认为本站的某些信息侵犯了您的版权,请与我们联系,我们会即时妥善的处理,谢谢合作!