2010-11-28 72 views

回答

0

您可以編寫一個腳本,你在你的HTML頁面中嵌入像往常圖像:

<img src="rotatedtext.php?text=blablubb" /> 

不要忘記設置內容類型的HTTP標頭的那個腳本圖像/ PNG(我建議PNG爲目的)outputing的PNG數據之前:

//create the image here and then: 
header("Content-Type: image/png"); 
imagepng($image);