使用 PythonMagick 调整动画 GIF 的大小
我正在使用 PythonMagick 0.9.3(无法切换到 PIL)来调整图像大小。它适用于除动画 GIF 之外的所有内容。
这就是我目前调整图像大小的方式:
orig_image = Image('path/to/animated.gif')
orig_image.resize('..resize string..')
orig_image.write('path/to/thumbnail.gif')
目前,它仅调整序列中第一张图像的大小,因此此后图像不再具有动画效果。 有人可以解决我的问题吗?
谢谢你!
I'm using PythonMagick 0.9.3 (cannot switch to PIL) to resize images. It works fine for everything except for animated GIFs.
This is the way how I resize the images at the moment:
orig_image = Image('path/to/animated.gif')
orig_image.resize('..resize string..')
orig_image.write('path/to/thumbnail.gif')
Currently it only resizes the first image of the sequence so the image is no longer animated afterwards.
Does anyone have a workaround for my problem?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想您必须迭代构成动画的所有图像,调整它们的大小,然后在 这个(以 PHP 语言为例)
I suppose you have to iterate on all the images that compose the animation, resize them, and recompose the animation after like this (with example for PHP language)