使用 Python 管理簡報中的圖片框架

概觀

圖片框架是用來在投影片中顯示圖像的形狀。在 Aspose.Slides 中,圖像資源與顯示該圖像的形狀是分離的物件:一個Presentation 透過其ImageCollection 擁有嵌入的圖像資源,而PictureFrame則控制圖像的位置、大小、線條格式、旋轉、裁切、圖片效果以及其他框架層級的設定。

此分離在相同圖像需要顯示多次時非常有用。將圖像加入簡報一次,保留回傳的PPImage,在建立圖片框架時使用該圖像資源。

圖片框架可以包含 PNG 或 JPEG 等點陣圖,也可以包含 SVG 向量圖。它們也可以參照連結圖像,而不是將圖像位元組儲存在簡報中。此選擇會影響可攜性、檔案大小、擷取與匯出行為,因此在套用格式或最佳化之前,先決定圖像應如何儲存是有益的。

加入與格式化嵌入圖像

對於嵌入圖像,將圖像資料加入簡報,並使用ShapeCollection.addPictureFrame 建立圖片框架。圖像會成為簡報套件的一部分,所以將簡報移至其他電腦時仍是自包含的。

以下範例加入 JPEG 圖像、以圖像的原始尺寸建立框架,並套用線條格式與旋轉:

import jpype
import asposeslides

if not jpype.isJVMStarted():
    jpype.startJVM()

from java.awt import Color
from asposeslides.api import FillType, Images, Presentation, SaveFormat, ShapeType

presentation = Presentation()
try:
    slide = presentation.getSlides().get_Item(0)

    source_image = Images.fromFile("photo.jpg")
    try:
        image = presentation.getImages().addImage(source_image)
    finally:
        source_image.dispose()

    picture_frame = slide.getShapes().addPictureFrame(ShapeType.Rectangle, 50, 100, image.getWidth(), image.getHeight(), image)
    picture_frame.getLineFormat().getFillFormat().setFillType(FillType.Solid)
    picture_frame.getLineFormat().getFillFormat().getSolidFillColor().setColor(Color.BLUE)
    picture_frame.getLineFormat().setWidth(3)
    picture_frame.setRotation(15)

    presentation.save("picture-frame.pptx", SaveFormat.Pptx)
finally:
    presentation.dispose()

圖片框架控制顯示的幾何形狀;變更框架大小不會改變嵌入圖像資源中儲存的原始像素尺寸。此區別在之後裁切或壓縮圖像時變得重要。

使用相對比例縮放

PictureFrame 透過setRelativeScaleWidthsetRelativeScaleHeight 提供相對寬高的縮放。值為 1.0 代表原圖大小的 100%。相對縮放在工作流程需要保留與來源圖像尺寸之關係,而不是手動計算最終尺寸時相當有用。

import jpype
import asposeslides

if not jpype.isJVMStarted():
    jpype.startJVM()

from asposeslides.api import Images, Presentation, SaveFormat, ShapeType

presentation = Presentation()
try:
    slide = presentation.getSlides().get_Item(0)

    source_image = Images.fromFile("photo.jpg")
    try:
        image = presentation.getImages().addImage(source_image)
    finally:
        source_image.dispose()

    picture_frame = slide.getShapes().addPictureFrame(ShapeType.Rectangle, 50, 50, 100, 100, image)
    picture_frame.setRelativeScaleWidth(1.35)
    picture_frame.setRelativeScaleHeight(0.8)

    presentation.save("relative-scale.pptx", SaveFormat.Pptx)
finally:
    presentation.dispose()

相對縮放會變更框架的縮放設定;它不會重新取樣或壓縮嵌入圖像。

嵌入與連結圖像

嵌入圖片將圖像資料儲存在簡報內,是可攜性與可預測呈現最安全的選擇。連結圖片則透過Picture.setLinkPathLong 方法儲存外部位置,而不是以相同方式嵌入圖像資料。

連結圖像可以減少 PPTX 中儲存的圖像資料量,但會產生外部相依性。開啟或呈現簡報的應用程式必須能存取該連結檔案。若路徑變更、檔案移動或資源不可用,連結圖片可能無法如預期顯示。對於必須以電子郵件傳送、封存或在隔離環境中呈現的簡報,嵌入圖像通常較為可靠。

加入連結圖像

以下範例建立圖片框架並指向本機圖像檔案。它僅處理圖像連結;影片連結屬於另一個多媒體工作流程,故此範例不會混入。

import jpype
import asposeslides

if not jpype.isJVMStarted():
    jpype.startJVM()

from pathlib import Path
from asposeslides.api import Presentation, SaveFormat, ShapeType

presentation = Presentation()
try:
    slide = presentation.getSlides().get_Item(0)

    picture_frame = slide.getShapes().addPictureFrame(ShapeType.Rectangle, 50, 50, 320, 180, None)
    linked_image_file = Path("linked-image.jpg").resolve()
    link_path = str(linked_image_file)
    picture_frame.getPictureFormat().getPicture().setLinkPathLong(link_path)

    presentation.save("linked-image.pptx", SaveFormat.Pptx)
finally:
    presentation.dispose()

當外部檔案管理是有意為之時才使用連結。不要僅將其當作壓縮的替代方案:一個帶有斷開圖像相依性的較小 PPTX 通常不如完整的較大簡報有用。

從圖片框架擷取圖像

在從現有簡報擷取圖像之前,先確認形狀實際上是PictureFrame 且其中包含嵌入圖像。連結圖片框架可能不包含可直接擷取的圖像位元組。

擷取點陣圖像

新版圖像 API 直接支援點陣圖,且不需要舊的 Java 圖像包裝器。以下範例在投影片上找到第一個嵌入的點陣圖,並將其儲存為 PNG:

import jpype
import asposeslides

if not jpype.isJVMStarted():
    jpype.startJVM()

from asposeslides.api import ImageFormat, Presentation, PictureFrame

presentation = Presentation("sample.pptx")
try:
    slide = presentation.getSlides().get_Item(0)

    for shape in slide.getShapes():
        if not isinstance(shape, PictureFrame):
            continue

        picture_frame = shape
        embedded_image = picture_frame.getPictureFormat().getPicture().getImage()
        if embedded_image is None or embedded_image.getSvgImage() is not None:
            continue

        raster_image = embedded_image.getImage()
        try:
            raster_image.save("extracted-image.png", ImageFormat.Png)
        finally:
            raster_image.dispose()
        break
finally:
    presentation.dispose()

儲存點陣圖會將擷取的圖像轉換為請求的輸出格式。若需要的是儲存在簡報中的編碼位元組而非已轉換的點陣檔,請使用圖像資源的二進位資料。

擷取 SVG 圖像

對於 SVG 圖片,PPImage 會公開一個SvgImage 物件。這讓您可以直接取得 SVG 資料,而不必先將圖片光柵化。

import jpype
import asposeslides

if not jpype.isJVMStarted():
    jpype.startJVM()

from pathlib import Path
from asposeslides.api import Presentation, PictureFrame

presentation = Presentation("sample.pptx")
try:
    slide = presentation.getSlides().get_Item(0)

    for shape in slide.getShapes():
        if not isinstance(shape, PictureFrame):
            continue

        picture_frame = shape
        embedded_image = picture_frame.getPictureFormat().getPicture().getImage()
        svg_image = embedded_image.getSvgImage() if embedded_image is not None else None
        if svg_image is None:
            continue

        svg_data = svg_image.getSvgData()
        Path("extracted-image.svg").write_bytes(bytes(svg_data))
        break
finally:
    presentation.dispose()

將 SVG 內容保留為 SVG 可在簡報中保存向量來源。PNG 或 JPEG 等點陣匯出必然會將向量內容渲染為像素。PDF 或 SVG 投影片匯出也是渲染操作,因此匯出的圖形不應被視為原始嵌入 SVG 的位元逐一拷貝;當需要原始向量資源時,請使用嵌入的SvgImage.getSvgData 資料。

裁切圖像

裁切會變更在框架內可見的圖像區域。PictureFillFormat 的裁切值是來源圖像尺寸的百分比。裁切不會立即從嵌入圖像中刪除隱藏的像素;它僅改變可見區域。

以下範例安全地找到圖片框架並套用裁切值:

import jpype
import asposeslides

if not jpype.isJVMStarted():
    jpype.startJVM()

from asposeslides.api import Presentation, SaveFormat, PictureFrame

presentation = Presentation("sample.pptx")
try:
    slide = presentation.getSlides().get_Item(0)
    picture_frame = None

    for shape in slide.getShapes():
        if isinstance(shape, PictureFrame):
            picture_frame = shape
            break

    if picture_frame is not None:
        picture_frame.getPictureFormat().setCropLeft(23.6)
        picture_frame.getPictureFormat().setCropRight(21.5)
        picture_frame.getPictureFormat().setCropTop(3)
        picture_frame.getPictureFormat().setCropBottom(31)
        presentation.save("cropped-image.pptx", SaveFormat.Pptx)
finally:
    presentation.dispose()

由於隱藏的圖像資料仍在,之後仍可變更裁切而不會失去原始像素。若檔案大小較為重要且不需要可逆性,後續可如下一節所述實際移除裁切區域。

移除裁切圖像資料

PictureFillFormat.deletePictureCroppedAreas 會移除目前裁切矩形外的圖像資料,並回傳結果圖像資源。這可以減小檔案大小,但屬於破壞性最佳化:儲存簡報後,被移除的像素將無法再進行取消裁切的操作。

import jpype
import asposeslides

if not jpype.isJVMStarted():
    jpype.startJVM()

from asposeslides.api import Presentation, SaveFormat, PictureFrame

presentation = Presentation("cropped-image.pptx")
try:
    slide = presentation.getSlides().get_Item(0)
    picture_frame = None

    for shape in slide.getShapes():
        if isinstance(shape, PictureFrame):
            picture_frame = shape
            break

    if picture_frame is not None:
        cropped_image = picture_frame.getPictureFormat().deletePictureCroppedAreas()
        if cropped_image is not None:
            presentation.save("cropped-data-removed.pptx", SaveFormat.Pptx)
finally:
    presentation.dispose()

此方法可能會在簡報中新增圖像資源。若原始圖像同時被其他圖片框架使用,這些框架仍需保留其既有資源,因此刪除裁切區域不一定能減少總圖像數量。使用此方法裁切 WMF 或 EMF 內容會將裁切結果光柵化為 PNG。

壓縮點陣圖像

PictureFillFormat.compressImage 會根據圖片實際顯示的大小降低點陣圖解析度。它也可以在同一次操作中移除裁切區域。當圖像被重新調整大小或裁切時,方法回傳 True;若未做任何變更則回傳 False

當標準目標解析度足夠時,可使用預先定義的PicturesCompression 值:

import jpype
import asposeslides

if not jpype.isJVMStarted():
    jpype.startJVM()

from asposeslides.api import PicturesCompression, Presentation, SaveFormat, PictureFrame

presentation = Presentation("sample.pptx")
try:
    slide = presentation.getSlides().get_Item(0)
    picture_frame = None

    for shape in slide.getShapes():
        if isinstance(shape, PictureFrame):
            picture_frame = shape
            break

    if picture_frame is not None:
        compressed = picture_frame.getPictureFormat().compressImage(True, PicturesCompression.Dpi150)
        print("The image was compressed." if compressed else "No compression was necessary.")
        presentation.save("compressed-image.pptx", SaveFormat.Pptx)
finally:
    presentation.dispose()

若需要特定目標,可傳入自訂的正 DPI 值取代預定義值。

壓縮僅適用於點陣圖像。SVG 與圖元檔案不會因此點陣壓縮工作流程而減小。此外,較低的解析度與已刪除的裁切區域無法從最佳化後的簡報中復原。請根據圖像實際檢視或匯出的最大尺寸選擇目標解析度,而非全局套用最低 DPI。

管理圖像變換效果

完整的工作流程(包括亮度、對比、色彩變換、模糊、透明度效果、順序鏈、檢查、移除與往返驗證),請參閱Image Transform Effects

鎖定圖片框架幾何

PictureFrameLock 設定可控制哪種編輯操作會被停用。例如,setAspectRatioLocked 會在調整大小時保留形狀的比例。

import jpype
import asposeslides

if not jpype.isJVMStarted():
    jpype.startJVM()

from asposeslides.api import Images, Presentation, SaveFormat, ShapeType

presentation = Presentation()
try:
    slide = presentation.getSlides().get_Item(0)

    source_image = Images.fromFile("photo.jpg")
    try:
        image = presentation.getImages().addImage(source_image)
    finally:
        source_image.dispose()

    picture_frame = slide.getShapes().addPictureFrame(ShapeType.Rectangle, 50, 100, image.getWidth(), image.getHeight(), image)
    picture_frame.getPictureFrameLock().setAspectRatioLocked(True)

    presentation.save("locked-picture-frame.pptx", SaveFormat.Pptx)
finally:
    presentation.dispose()

此鎖定套用於圖片框架形狀本身,不會強迫來源圖像重新取樣或永久改變為相同的長寬比。

調整 StretchOffset 值

當圖片填滿模式為 stretch 時,PictureFillFormat 上的 stretch‑offset 值會相對於圖片框架的邊界框定義填充矩形。正百分比會從邊緣向內縮進,負百分比則向外延伸。

這與裁切不同。裁切值選擇來源圖像的可視部分;stretch offset 則改變可見圖片填充被拉伸進入的矩形。

import jpype
import asposeslides

if not jpype.isJVMStarted():
    jpype.startJVM()

from asposeslides.api import Images, PictureFillMode, Presentation, SaveFormat, ShapeType

presentation = Presentation()
try:
    slide = presentation.getSlides().get_Item(0)

    source_image = Images.fromFile("photo.png")
    try:
        image = presentation.getImages().addImage(source_image)
    finally:
        source_image.dispose()

    picture_frame = slide.getShapes().addPictureFrame(ShapeType.Rectangle, 10, 10, 400, 300, image)
    picture_frame.getPictureFormat().setPictureFillMode(PictureFillMode.Stretch)
    picture_frame.getPictureFormat().setStretchOffsetLeft(12)
    picture_frame.getPictureFormat().setStretchOffsetRight(12)
    picture_frame.getPictureFormat().setStretchOffsetTop(8)
    picture_frame.getPictureFormat().setStretchOffsetBottom(8)

    presentation.save("stretch-offsets.pptx", SaveFormat.Pptx)
finally:
    presentation.dispose()

使用 stretch offset 來放置填充;欲隱藏來源圖像邊緣時請使用裁切屬性。

儲存、檔案大小與匯出考量

將圖像儲存與圖片框架格式化分開處理時,主要的取捨較易掌控:

  • 嵌入圖像使簡報自包含,且在共享與伺服器端渲染時最可靠,但大型點陣圖會增加 PPTX 大小與記憶體使用。
  • 連結圖像可減少套件體積,但簡報依賴外部檔案必須保持可用於儲存的路徑或位置。
  • 裁切起初為非破壞性。隱藏的像素會持續嵌入,直至明確刪除裁切區域或在壓縮時移除。
  • 壓縮可大幅減少過大點陣圖的檔案大小,但會犧牲來源解析度。應在確定投影片上最終顯示尺寸後再執行。
  • SVG 圖像在向量保留重要時應保持 SVG。需要向量資源時直接擷取嵌入的 SVG。點陣投影片匯出始終會將渲染的投影片轉為像素。
  • 重複圖像應盡可能重複使用現有的PPImage 資源,而不是在簡報工作流程中重複載入相同檔案。

對於大型簡報,圖像最佳化通常在挑選性執行時最有效:將標誌與圖表保留為向量內容,依實際顯示大小壓縮照片,只在不需日後編輯時移除裁切像素,除非部署設計已包含相依性管理,否則避免使用外部連結。

常見問答

圖片框架與圖像資源有何差異?

PPImage 代表與簡報關聯的圖像資源。PictureFrame 是投影片上的形狀,用於顯示圖像並儲存框架層級的幾何與格式資訊,例如大小、旋轉、裁切值、效果與鎖定。

應該嵌入還是連結圖像?

當簡報必須具備可攜性、需要封存或在未存取外部資源的情況下渲染時,請嵌入圖像。僅在有意將圖像檔案保留在 PPTX 之外且能可靠維護外部位置時才使用連結圖像。

裁切會減少 PPTX 檔案大小嗎?

單獨的裁切不會。一般的裁切設定會隱藏來源圖像的部份,但仍保留底層像素。若希望永久移除這些像素,請使用PictureFillFormat.deletePictureCroppedAreas 或在壓縮時移除裁切區域。

壓縮後能恢復圖像品質嗎?

不能。壓縮會降低儲存的點陣解析度,且移除裁切區域會捨棄圖像資料。如有日後需要高解析度編輯,請在簡報外保留原始來源圖像。

SVG 圖像該如何處理?

在向量完整性重要時,保留 SVG 內容為 SVG。可直接擷取嵌入的SvgImage 。將投影片渲染為 PNG、JPEG 等點陣格式時,SVG 會被光柵化為圖像。

如何避免在讀取現有投影片時產生不安全的型別轉換?

在使用圖片框架特定成員之前,先檢查形狀類型。對PictureFrame 執行 isinstance 檢查,可避免無效的型別轉換,並讓程式碼能處理不含圖片框架的投影片。