PHP 指定字型, 並將文字畫成圖片來顯示.
範例程式
使用字型: /usr/share/fonts/truetype/arphic/bkai00mp.ttf
下述程式會產生 800 x 600 的圖片, 用 bkai00mp.ttf 來將 "今天天氣真好\n是旅遊的好天氣" 的 text 內容, 變成圖片.
<?php
$text = "今天天氣真好\n";
$text .= "是旅遊的好天氣";$image = imagecreate(800, 600); // width = 800, height = 600
$bg = imagecolorallocate($image, 255, 255, 255); // 背景色$font = '/usr/share/fonts/truetype/arphic/bkai00mp.ttf'; // 字型
$black = imagecolorallocate($image, 0, 0, 0); // 字的顏色// imagettftext($image, 大小, 旋轉, 與左邊的距離, 與上面的距離, $black, $font, $text);
imagettftext($image, 30, 0, 0, 40, $black, $font, $text);header('Content-type: image/gif');
imagegif($image);
imagedestroy($image);
?>
你好!我想請問你這範例內的字型是使用 ****.ttf 但我發現有些國內金梅字型是 ****.ttc的.會有無法顯示問題.我想請問大大你可有解決方法?感恩...
有沒有辦法找找 ttc 轉 ttf 得程式?