唉,看来你还是没搞清楚关系~~给你个代码吧~~不过最终字的大小和位置还要调整,额外的参数你自己搞吧~~<?php
$str="test1";$im = imagecreatefrompng("test.png");$srcW=ImageSX($im);
$srcH=ImageSY($im);$str_width = imagettfbbox(9, 0, "tahoma.ttf", $str);
$ni=imagecreatetruecolor($str_width[2] - $str_width[0] + $srcW, $srcH);
imagefill($ni, 0, 0, imagecolorallocate($ni, 255, 255, 255));imagecopyresampled($ni,$im, abs($str_width[2] - $str_width[0]),0,0,0,$srcW,$srcH,$srcW,$srcH);$color = imagecolorallocate($ni, 0, 0, 0);
imagettftext($ni, 9, 0, 0, abs($str_width[7] - $str_width[1]), $color, "tahoma.ttf", $str);imagepng($ni, "test1.png");
imagedestroy($ni);