需要以 图片 转换为 SVG 图像吗?使用Aspose.Words for Python via .NET任何开发人员都可以轻松地将 图片 转换为 SVG 图像格式,只需几行 Python 代码。
现代文档处理 Python API 从 图片 高速 SVG 直接在浏览器中 图片 到 SVG 转换的质量。强大的 Python 库允许将 图片 文件转换为许多流行的图像格式。
下面的例子演示了如何转换 图片 为 SVG 画面中 Python 。
按照简单的步骤将 图片 文件转换为 SVG 图形格式。从本地驱动器读取 图片 ,然后将其保存为 SVG SVG 扩展名指定所需的图像格式。对于 图片 读取和 SVG 写入,您可以使用完全限定的文件名。输出 SVG 图形内容将与原始 图片 文件相同。
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.svg", aw.saving.ImageSaveOptions(aw.SaveFormat.SVG))
import aspose.words as aw
doc = aw.Document("Input.png")
doc.save("Output.svg")
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}.svg")
import aspose.words as aw
doc = aw.Document()
builder = aw.DocumentBuilder(doc)
builder.insert_image("Input.png")
doc.save("Output.svg")
import aspose.words as aw
doc = aw.Document()
builder = aw.DocumentBuilder(doc)
shape = builder.insert_image("Input.png")
shape.get_shape_renderer().save("Output.svg", aw.saving.ImageSaveOptions(aw.SaveFormat.svg))
我们在PyPi存储库中托管我们的 Python 请按照有关如何 "Aspose.Words for Python via .NET" 安装到您的开发人员环境的分步说明进行操作。
这个包与 Python ≥3.5 和 <3.12 兼容。如果您为 Linux 开发软件,请查看产品文档中对 gcc 和 libpython 的附加要求。
您可以将图片转换为许多其他文件格式: