在 Python 中將 SVG 合併為 PNG

用於使用 Python 代碼將 SVG 合併為 PNG 圖像的高速跨平台 Python 庫

使用 Aspose.Slides 將 SVG 合併為 PNG

Aspose.Slides for Python via .NET 是一個功能強大的 Python 庫,用於合併和操作演示文稿、圖像和其他文件。當您將 SVG 合併到 PNG 時,您實際上是在組合 SVG 圖像以獲得 PNG 圖片。

在 Python 中將 SVG 合併為 PNG

使用 Aspose.Slides for Python via .NET ,只需幾行代碼即可快速將 SVG 合併為 PNG 文件

將 SVG 合併為 PNG 的 Python 代碼


import aspose.slides as slides
import aspose.pydrawing as drawing

with slides.Presentation() as pres:
    with open("image.svg", "rb") as file:
        svgContent = file.read()
    svgImage = slides.SvgImage(svgContent)
    ppImage = pres.images.add_image(svgImage)
    pres.slides[0].shapes.add_picture_frame(slides.ShapeType.RECTANGLE, 0, 0, ppImage.width, ppImage.height, ppImage)

    for sld in pres.slides:
        bmp = sld.get_thumbnail(1, 1)
        bmp.save("Slide_{num}.png".format(num=str(sld.slide_number)), drawing.imaging.ImageFormat.png)

如何在 Python 中將 SVG 合併為 PNG

  1. 通過 .NET 安裝 Aspose.Slides for Python。請參閱 安裝

  2. 添加庫作為項目中的引用。

  3. 創建一個 Presentation 類的實例。

  4. 加載要合併在一起的 SVG 文件。

  5. 保存生成的 PNG 圖像。

在線合併 PDF 文件

如何在 Python 中合併 PDF

合併其他文件

您還可以合併其他格式的文件以獲得單個文件