php、gd 和样式
例如我有这个html代码:
<p><strong>Text text.</strong></p>
<p><span style="font-size: 14pt;"><span style="background-color: #ff0000;">Text text...</span></span></p>
可以在图像上用这种样式写这个文本(使用php GD)吗?
谢谢
for example i have this html code:
<p><strong>Text text.</strong></p>
<p><span style="font-size: 14pt;"><span style="background-color: #ff0000;">Text text...</span></span></p>
Possible write this text with this style on the image (with php GD)?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅:
imagecolorallocate
设置红色背景颜色imagestring
写入字符串到图像上(有字体大小的参数)imageloadfont
加载字体的粗体版本如果您尝试使用这些函数编写字体并遇到特定问题,请发布另一个问题
See:
imagecolorallocate
to set the red background colorimagestring
to write a string onto an image (there's an argument for font size)imageloadfont
to load a bold version of a fontPost another question if you've tried writing it with these functions and have a specific problem