创建字幕文本 GIF

发布于 2024-11-18 05:28:47 字数 124 浏览 2 评论 0原文

我知道这会占用大量带宽,但我愿意这样做。

目前我有一个脚本可以拍摄一些图像并将它们制作成 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

贱人配狗天长地久 2024-11-25 05:28:47

只需创建一个通过图像的 x 坐标的循环。示例($im 是您的图像,text 是一个在给定 x,y 坐标处将文本写入 $im 的函数):

$image_width=imagesx($im);//get width of image
$increment=5;//get increment of text scroll
for($i=0;$i<$image_width;$i+=$increment){//loops the image pixels
text(0,$i);//calls the function text which should draw text to $im at the given coordinates
}

如果您不知道如何实现 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):

$image_width=imagesx($im);//get width of image
$increment=5;//get increment of text scroll
for($i=0;$i<$image_width;$i+=$increment){//loops the image pixels
text(0,$i);//calls the function text which should draw text to $im at the given coordinates
}

Please ask if you don't know how to implement the text function.

站稳脚跟 2024-11-25 05:28:47

尽管这个解决方案已经过时且普遍令人讨厌超级oldskool,但它听起来确实像您实际上正在寻找html 标签。

<marquee>this text will scroll from right to left!!!</marquee>

Although this solution is outdated and universally hated super oldskool, it really does sound like you're actually looking for the html <marquee> tag.

<marquee>this text will scroll from right to left!!!</marquee>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文