PHP字轉圖
Ⅰ 如何將文字用php轉換成圖片
header ("Content-type: image/png");
function autowrap($fontsize, $angle, $fontface, $string, $width) {
// 這幾個變數分別是 字體大小, 角度, 字體名稱, 字元串, 預設寬度
$content = "";
// 將字元串拆分成一個個單字 保存到數組 letter 中
for ($i=0;$i<mb_strlen($string);$i++) {
$letter[] = mb_substr($string, $i,1,'utf-8');
}
foreach ($letter as $l) {
$teststr = $content." ".$l;
$testbox = imagettfbbox($fontsize, $angle, $fontface, $teststr);
// 判斷拼接後的字元串是否超過預設的寬度
if (($testbox[2] > $width) && ($content !== "")) {
$content .= "\n";
}
$content .= $l;
}
return $content;
}
$text = $_GET['text'];//傳過來的要處理的文字
$text = autowrap(14, 0, "msyh.ttf", $text, 250); // 自動換行處理
$im = imagecreate(278,350);
$background = imagecolorallocate($im, 255, 0, 0);
imagecolortransparent($im,$background); //imagecolortransparent() 設置具體某種顏色為透明色,若注釋
$A = "img/".$_GET['mo'].".png";
$black = imagecreatefromstring(file_get_contents($A));
$white = imagecolorallocate($black,0x66,0x66,0x66);
imagettftext($black,12,0,30,55,$white,"msyh.ttf",$text); //字體設置部分linux和windows的路徑可能不同
imagepng($black);//文字生成的圖
Ⅱ php文字轉圖片亂碼
你php腳本直接保存為utf-8格式吧.
Ⅲ 如何用php把文字轉變成圖片.也就是往網頁輸入文字.通過網站後台生成png圖片
首先要確定你的環境支持GD庫;
程序很簡單:
$str = "測試一下";//輸入的文字
header("Content-type: image/jpeg");
$im = imagecreate(100, 30) or die("Cannot Initialize new GD image stream");//圖片大小
$str=iconv("gb2312","UTF-8",$str);
for($i=0;$i<200;$i++) //加入干擾象素
{
$clr = ImageColorallocate($im,rand(0,255),rand(0,255),rand(0,255));
imagesetpixel($im, rand()%100 , rand()%50 , $clr);
}
//$str="sss";
$black = imagecolorallocate($im, 0, 0, 0);
$fnt = "c:\windows\fonts\simhei.ttf"; //字體文件
ImageTTFText($im, 15, 0, 10, 20, $black, $fnt, $str);
imagejpeg($im);
//imagepng($im);
imagedestroy($im);
Ⅳ php圖片加字將字旋轉位置
根據文字所在圖片的位置方向,計算文字的位置。
php給圖片添加文字水印,可控制位置,旋轉,多行文字,主要包括php給圖片添加文字水印可控制位置,旋轉,多行文字使用實例、應用技巧、基本知識點總結和需要注意事項。
Ⅳ 如何讓PHP中的數字變成圖片
//按照下面的代碼就能將數字轉成圖片了
for($i=0;$i<100;$i++){
if($i%10==0){
echo"<imgsrc='appserv/".$i.".gif'/><br/>";
}else{
echo"<imgsrc='appserv/".$i.".gif'/>";
}
}