需要以编程方式将图像转换为 图片 文档?借助Aspose.Words for Python via .NET,任何开发人员只需几行 Python 代码即可将图像转换为 图片 文档格式。
现代图像处理 Python API 从具有专业品质的图像创建 图片 文档。直接在浏览器中测试最高质量的图像到 图片 的转换。强大的 Python 库允许将图像转换为许多流行的格式。
以下示例演示如何在 Python 中将图像转换为 图片 文档格式。
按照简单的步骤将图像文件转换为 图片 文档格式。从本地驱动器读取图像,然后将其简单地保存为文档格式,并通过 图片 文档扩展名指定所需的文件格式。对于图像读取和 图片 文档写入,您可以使用完全限定的文件名。
pip install aspose-words
复制
import aspose.words as aw
doc = aw.Document()
builder = aw.DocumentBuilder(doc)
builder.insert_image("Input.png")
doc.save("Output.txt")
import aspose.words as aw
doc = aw.Document("Input.png")
doc.save("Output.txt")
import aspose.words as aw
doc = aw.Document(Input.png)
for page in range(0, doc.page_count):
extractedPage = doc.extract_pages(page, 1)
extractedPage.save(f"Output_{page + 1}.txt")
import aspose.words as aw
doc = aw.Document()
builder = aw.DocumentBuilder(doc)
builder.insert_image("Input.png")
doc.save("Output.txt")
import aspose.words as aw
doc = aw.Document()
builder = aw.DocumentBuilder(doc)
shape = builder.insert_image("Input.png")
shape.get_shape_renderer().save("Output.txt", aw.saving.ImageSaveOptions(aw.SaveFormat.txt))
我们在PyPi存储库中托管我们的 Python 请按照有关如何 "Aspose.Words for Python via .NET" 安装到您的开发人员环境的分步说明进行操作。
这个包与 Python ≥3.5 和 <3.12 兼容。如果您为 Linux 开发软件,请查看产品文档中对 gcc 和 libpython 的附加要求。
您可以将图片转换为许多其他文件格式: