当前位置: 首页 > 图文教程 > 网络编程 > PHP > 随时给自己贴的图片加文字的php代码

PHP
PHP学习宝典-第四章
PHP学习宝典-第五章
PHP学习宝典-第六章
PHP学习宝典-第六章(续篇)
PHP学习宝典-第七章
PHP学习宝典-第八章(一)
PHP学习宝典-第八章(二)
PHP学习宝典-第九章
php配置,链接access数据库
HTML 初学者指南(一)
HTML 初学者指南(二)
HTML 初学者指南(三)
HTML 初学者指南(四)
HTML 初学者指南(五)
HTML 初学者指南(六)
HTML 初学者指南(七)
HTML 初学者指南(八)
HTML 初学者指南(九)
HTML 初学者指南(十)
网页常用特效整理:初级篇

PHP 中的 随时给自己贴的图片加文字的php代码


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-10-12   浏览: 61 ::
收藏到网摘: n/a

<?
Header( "Content-type: image/jpeg");
function makethumb($srcFile,$text,$size=12,$R=0,$G=0,$B=0) {
if(!$text){
$text=''welcome to imbbs.cn'';
$size=20;
$R=255;
}
$data = GetImageSize($srcFile,&$info);
switch ($data[2]) {
case 1: //图片类型,1是GIF图
$im = @ImageCreateFromGIF($srcFile);
break;
case 2: //图片类型,2是JPG图
$im = @imagecreatefromjpeg($srcFile);
break;
case 3: //图片类型,3是PNG图
$im = @ImageCreateFromPNG($srcFile);
break;
}
$srcW=ImageSX($im);
$srcH=ImageSY($im);
$ni= imagecreatetruecolor($srcW,$srcH);
imagecopyresampled($ni,$im,0,0,0,0,$srcW,$srcH,$srcW,$srcH);
$font = "2.ttf";
$textcolor = imagecolorallocate($ni,$R,$G,$B); // Set text color
$i=0;
$txt='''';
$len=ceil((12*22)/$size);
$lgg=ceil(($size*16)/12)-1;
while(strlen($txt)>0||!$i){
$start=$len*$i;
$kk=ceil($size*13/12);
//$kk=13;
$txt=substr($text, $start, $len);
$hei=$i*$lgg+$kk;
imagettftext($ni,$size, 0, 8, $hei, $textcolor, $font, $txt); // Write the text with a font
$i++;
}
ImageJpeg($ni);
}
if(!$size||$size<1)$size=12;
makethumb("/upload/tech/20091012/20091012014113_28f0b864598a1291557bed248a998d4e.jpg",$text,$size,$R,$G,$B);
?>