给图片添加文字(支持中文)

<?php
// **************************************** // 
// 功能:给图片添加文字
// 参数: $img 图片文件名 
// $new_img 另存图片文件名,如果为空表示不另存图片 
// $text 字符串内容 
// text_size 字符串大小 
// text_angle 字型串输出角度 
// text_x 字符串输出 x 坐标 
// text_y 字符串输出 y 坐标 
// $text_font 字型文件名 
// $r,$g,$b 字符串颜色RGB值 
// **************************************** // 
function img_text($img, $new_img, $text, $text_size, $text_angle, $text_x, $text_y, $text_font, $r, $g, $b){


//$text=iconv("gb2312","UTF-8",$text); 
//Header("Content-type: image/gif"); 
$im = @imagecreatefromstring(file_get_contents($img)) or die ("打开图片失败!");


  imagesavealpha($im, true);


$color = ImageColorAllocate($im, $r,$g,$b); 


//ImageTTFText(int im, int size, int angle, int x, int y, int col, string fontfile, string text): 
//本函数将 TTF (TrueType Fonts) 字型文字写入图片。 
//参数: size 为字形的尺寸; 
// angle 为字型的角度,顺时针计算,0 度为水平(由左到右),90 度则为由下到上的文字; 
// x,y 二参数为文字的坐标值 (原点为左上角); 
// col 为字的颜色; 
// fontfile 为字型文件名称; 
// text 是字符串内容。 
ImageTTFText($im, $text_size, $text_angle, $text_x, $text_y, $color, $text_font, $text); 

if ($new_img==""): 
ImageGif($im); // 不保存图片,只显示 
else: 
Imagejpeg($im,$new_img); // 保存图片,但不显示 
endif; 


ImageDestroy($im); //结束图形,释放内存空间 
}


$text_font = "C:\\Windows\\Fonts\\simsun.ttc";
img_text("ios.jpg","ios1.jpg","合意",15,0,95,48,$text_font,255,255,255);
?>


参考网址

http://hi.baidu.com/qzw3288/blog/item/8829173ea41bfee054e7232f.html

http://www.5dhome.net/myblog/read.php?193

http://hi.baidu.com/xuzuozhou/blog/item/541a3424f0275a28d407422b.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值