php加下字体并保存成图片,
[php] view plaincopy
-
-
- header("Content-type: image/png");
-
- $im = imagecreatetruecolor(400, 100);
-
- $white = imagecolorallocate($im, 255, 255, 255);
- $grey = imagecolorallocate($im, 128, 128, 128);
- $black = imagecolorallocate($im, 0, 0, 0);
- imagefilledrectangle($im, 0, 0, 399, 100, $white);
-
- $text = '字典网';
- $font = 'fontName.ttf';
-
-
- imagettftext($im, 60, 0, 0, 70, $black, $font, $text);
-
- imagepng($im);
- imagedestroy($im);
結果保存画像は次の代コードを使用できます
[html] プレーンコピーを表示
- ob_start();
- imagejpeg($im);
- $img = ob_get_contents();
- ob_end_clean();
- $サイズ = strlen($img);
-
- $fp2=@fopen('tst.jpg', "a");
- fwrite($fp2,$img);
- fclose($fp2);
http://www.bkjia.com/PHPjc/1040168.htmlwww.bkjia.com本当http://www.bkjia.com/PHPjc/1040168.html技術記事 php 加下字体并保存成图片, [php] view plaincopy //Setthecontent-type header( "Content-type:image/png"); //画像を作成 $im=imagecreatetruecolor(400,100); //素晴らしい...