2010-11-28 65 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);