在 Python 中将 图片转换为GIF

用于将图片转换为GIF的高速软件Python

使用我们的文档转换 API 在 Python 中开发高级、平台独立的软件。这是一个完整的专业软件解决方案,可Python 图片, GIF和许多其他文档格式。

查看代码片段

转换 图片 到 GIF 在 Python

需要以 图片 转换为 GIF 图像吗?使用Aspose.Words for Python via .NET任何开发人员都可以轻松地将 图片 转换为 GIF 图像格式,只需几行 Python 代码。

现代文档处理 Python API 从 图片 高速 GIF 直接在浏览器中 图片 到 GIF 转换的质量。强大的 Python 库允许将 图片 文件转换为许多流行的图像格式。

保存 图片 如 GIF 在 Python

下面的例子演示了如何转换 图片 为 GIF 画面中 Python 。

按照简单的步骤将 图片 文件转换为 GIF 图形格式。从本地驱动器读取 图片 ,然后将其保存为 GIF GIF 扩展名指定所需的图像格式。对于 图片 读取和 GIF 写入,您可以使用完全限定的文件名。输出 GIF 图形内容将与原始 图片 文件相同。

Python代码示例将PNG转换为GIF格式
上传您要转换的文件
运行代码
从列表中选择目标格式
pip install aspose-words
复制
import aspose.words as aw

doc = aw.Document()
builder = aw.DocumentBuilder(doc)

shape = builder.insert_image("Input.png")
shape.get_shape_renderer().save("Output.gif", aw.saving.ImageSaveOptions(aw.SaveFormat.GIF))
import aspose.words as aw doc = aw.Document("Input.png") doc.save("Output.gif") import aspose.words as aw doc = aw.Document("Input.png") save_options = aw.saving.ImageSaveOptions(aw.SaveFormat.gif) for page in range(doc.page_count): save_options.page_set = aw.saving.PageSet(page) doc.save(f"Output_{page + 1}.gif", save_options) import aspose.words as aw doc = aw.Document() builder = aw.DocumentBuilder(doc) builder.insert_image("Input.png") doc.save("Output.gif") import aspose.words as aw doc = aw.Document() builder = aw.DocumentBuilder(doc) shape = builder.insert_image("Input.png") shape.get_shape_renderer().save("Output.gif", aw.saving.ImageSaveOptions(aw.SaveFormat.gif))
运行代码
在社交媒体上分享代码:

如何在 Python 中将 图片 转换为 GIF

  1. Aspose.Words for Python via .NET安装 Aspose.Words。
  2. 将库引用(导入库)添加到您的Python项目。.
  3. 在Python打开源图片文件。.
  4. 调用save()方法,传递带有GIF扩展名的输出文件名。.
  5. 图片转换的结果GIF 。.

Python库将图片转换为GIF

我们在PyPi存储库中托管我们的 Python 请按照有关如何 "Aspose.Words for Python via .NET" 安装到您的开发人员环境的分步说明进行操作。

系统要求

这个包与 Python ≥3.5 和 <3.12 兼容。如果您为 Linux 开发软件,请查看产品文档中对 gcc 和 libpython 的附加要求。

5%

订阅 Aspose 产品更新

获取直接发送到您的邮箱的每月通讯和优惠。

© Aspose Pty Ltd 2001-2024. 版权所有。