有没有办法可以将文本转换为Image&然后旋转它&然后使用脚本\代码显示全部显示在网页
答案 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)