创建字幕文本 GIF
我知道这会占用大量带宽,但我愿意这样做。
目前我有一个脚本可以拍摄一些图像并将它们制作成 gif 图像。
我知道如何创建带有文本的图像。
我需要一个函数来获取文本并将其从右向左水平滚动。
I know this will take up a lot of bandwidth but I'm willing to do that.
Currently I have a script that will take a number of images and make them into a gif.
And I know how to create a image with text.
I need a function that takes text and scrolls it horizontally from right to left.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需创建一个通过图像的 x 坐标的循环。示例($im 是您的图像,text 是一个在给定 x,y 坐标处将文本写入 $im 的函数):
如果您不知道如何实现
text
函数,请询问。Just create a loop through the x coordinates of the image. Example ($im is your image, text is a function which writes text to $im at the given x,y coordinates):
Please ask if you don't know how to implement the
text
function.尽管这个解决方案
已经过时且普遍令人讨厌超级oldskool,但它听起来确实像您实际上正在寻找htmlAlthough this solution is
outdated and universally hatedsuper oldskool, it really does sound like you're actually looking for the html<marquee>
tag.