在 Python 中將 PNG 轉換為 PPT

強大的跨平台 Python API,用於使用 Python 代碼將 PNG 轉換為 PPT

使用 Aspose.Slides 將 PNG 轉換為 PPT

Aspose.Slides for Python via .NET 是一個功能強大的 Python 庫,用於創建、轉換和操作 PowerPoint 演示文稿、PDF、 HTML 文檔和其他文件。將 PNG 轉換為 PPT 時,實際上是在創建包含基於 PNG 圖像的幻燈片的 PowerPoint 演示文稿。

在 Python 中將 PNG 轉換為 PPT

使用 Aspose.Slides for Python via .NET ,只需幾行代碼即可將 PNG 圖像轉換為 PowerPoint 演示文稿:

將PNG轉PPT的Python代碼

import aspose.slides as slides

with slides.Presentation() as pres:
    slide = pres.slides[0]
    with open("img.png", "rb") as in_file:
        image = pres.images.add_image(in_file)
        slide.shapes.add_picture_frame(slides.ShapeType.RECTANGLE, 0, 0, 720, 540, image)
    
    pres.save("pres_with_image.ppt", slides.export.SaveFormat.PPT)

如何在 Python 中將 PNG 轉換為 PPT

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

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

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

  4. 加載要轉換為 PPT 的 PNG 圖像。

  5. 將生成的文件另存為 PPT 演示文稿。

免費在線轉換器

如何在 Python 中將 PPT 轉換為 HTML

其他支持的 PowerPoint 轉換

您還可以將其他格式的文件轉換為 PowerPoint