如何从电影中创建动画 .gif?
如何从我拥有的电影中创建动画 .gif 文件? 我想在 Objective-C 和 cocoa 中,通过使用 QTKit 从电影中提取图像非常简单,现在我如何将它们粘合在一起作为动画 gif?
How can I create an animated .gif file from a movie I have?
I guess it is pretty simple in objective-C and cocoa, by using the QTKit, to extract images from a movie, now how can I glue them together as an animated gif?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为 OS X 中没有内置任何用于创建动画 GIF 的东西。最好的选择是查看 gifsicle 项目。您可以通过命令行调用它,或者在您的许可证允许的情况下借用代码。 (它是 GPL)
http://www.lcdf.org/gifsicle/
I don't think there's anything built into OS X for creating animated GIFs. Your best bet would be to look at the gifsicle project. You could either call it via command-line, or borrow the code if your license allows it. (it's GPL)
http://www.lcdf.org/gifsicle/
对于此任务(以及其他类型的图像处理),有一个非常好的库(即使“旧”): libgd 。它似乎内置于 Mac OS X 中,或者可以通过 MacPorts 轻松安装。这里有一些文档关于从单个图像创建动画GIF。
There is a pretty good lib (even if 'old') for this task (and other kinds of image processing): libgd. It appears it is built into Mac OS X or easly installable through MacPorts. Here some doc about animated GIF creation from single images.