将文本转换为Image&旋转它

时间:2010-11-28 08:13:45

标签: php javascript jquery html

有没有办法可以将文本转换为Image&然后旋转它&然后使用脚本\代码显示全部显示在网页

3 个答案:

答案 0 :(得分:1)

是的,你可以看一下GD的imagettfext或Imagick的annotateImage

答案 1 :(得分:0)

您可以编写一个脚本,将其嵌入到html页面中,就像通常的图像一样:

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

在输出png数据之前,不要忘记将该脚本中http-header的内容类型设置为image / png(我建议用于此目的):

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

答案 2 :(得分:0)

您可能想阅读我的文章:

网页中的垂直标签

http://www.codeproject.com/KB/custom-controls/VerticalLabel.aspx