iOS 版 ImageMagick 是否支持将 jpeg 图像转换为 GIF?

发布于 2024-11-28 09:11:16 字数 51 浏览 3 评论 0原文

iOS 版 ImageMagick 是否支持将 jpeg 图像转换为 GIF?怎么做呢?

Does the ImageMagick for iOS support converting jpeg images to GIF? How to do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

吃素的狼 2024-12-05 09:11:16

根据在 ImageMagick 中本质上受支持” “nofollow noreferrer”>此处评论

本文介绍了如何在 iOS 上使用 ImageMagick 从 UIImage 源导出动画 GIF,您可以将其用作起始 观点。

MagickWand *mw = NewMagickWand();
MagickSetFormat(mw, "gif");

GIFS are "inherently supported in ImageMagick", according to comments here.

This article describes how to export an animated GIF from UIImage source using ImageMagick on iOS that you can use as a starting point.

MagickWand *mw = NewMagickWand();
MagickSetFormat(mw, "gif");
未蓝澄海的烟 2024-12-05 09:11:16

显然,ImageMagick 确实支持在 iOS 上创建 GIF,尽管他们的 网站 明确指出iOS 上仅支持 png、jpeg 和 tiff。我还没有找到任何值得链接的来源,并且下面提到的其他链接已不再存在,所以祝你好运。

Apparently, ImageMagick does support GIF creation on iOS, even though their website clearly states it only supports png, jpeg and tiff on iOS. I haven't found any source of this worth linking and the other link mentioned below is no longer existing, so good luck with that.

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