在 PHP 中沿着路径弯曲文本?
有没有办法在 PHP 中向文本添加曲线(如 CustomInk 中的形状“CURVE TEXT”所示 - 添加文本然后转到形状设置)?
现在我可以添加一条“拱形曲线”,它不会旋转字母,只是拉伸它们并移动它们以适应路径,但不是 CustomInk 使用的平滑弯曲文本外观。
Is there a way to add curve to text (as seen by the shape "CURVE TEXT" in CustomInk - add text then go to shape settings) in PHP?
Right now I can add an "arch curve" which doesn't rotate the letters, just stretches them and moves them to fit the path, but not the smooth curved text look that CustomInk is using.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 SVG 创建模板(在 Inkscape 或任何 SVG 编辑器中创建),然后使用 PHP 操作 XML。最后,为了获得一些动态输出,请在命令行上使用
inkscape
渲染修改后的 SVG 文件,以获得位图或 PDF 输出。结果将具有优异的质量。You could create a template using SVG (create in Inkscape or any SVG editor) and then manipulate the XML using PHP. Finally to get some dynamic output, render the modified SVG file using
inkscape
on the command line, to get either bitmap or PDF output. The results will be of excellent quality.