管理 Android 上的演示文稿占位符

概述

占位符是一种形状,用于在演示文稿模板中保留特定内容类型的位置。常见示例包括标题、正文、图片、图表以及通用内容占位符。与普通形状不同,占位符可以从版式幻灯片或母版幻灯片继承其位置、大小、格式和其他设置。

Aspose.Slides 通过 IShape.getPlaceholder 方法公开占位符信息。该方法返回一个 IPlaceholder 对象,普通形状则返回 null。使用 IPlaceholder.getType 可确定占位符预期包含的内容。

在了解占位符类型后,形状接口仍然重要:

  • 空的文本、图片、图表或内容占位符通常由 IAutoShape 表示。
  • 已填充的图片占位符可以由 IPictureFrame 表示。
  • 已填充的图表占位符可以由 IChart 表示。
  • 内容占位符可以包含多种内容。应同时检查 IPlaceholder.getType 和运行时形状接口,而不要假设每个占位符都是 IAutoShape

了解占位符继承

占位符形成层次结构:

  1. 母版幻灯片定义可重复使用的样式,并在某些情况下定义母版级别的占位符。
  2. 版式幻灯片定义一个或多个普通幻灯片使用的布局,并且可以继承自母版。
  3. 普通幻灯片包含该幻灯片的占位符,并可以继承自其版式。

调用 IShape.getBasePlaceholder 可在该层次结构中向上移动一级。幻灯片占位符通常返回其版式占位符;版式占位符可以返回其母版占位符。当形状没有基础占位符时,该方法返回 null

下面的示例列出第一张幻灯片上的占位符并报告它们的基础占位符:

import com.aspose.slides.*;

Presentation presentation = new Presentation("template.pptx");
try {
    ISlide slide = presentation.getSlides().get_Item(0);

    for (IShape shape : slide.getShapes()) {
        IPlaceholder placeholder = shape.getPlaceholder();
        if (placeholder == null) {
            continue;
        }

        byte placeholderType = placeholder.getType();
        String typeName = shape.getClass().getSimpleName();
        String slidePlaceholderMessage = "Slide placeholder: " + placeholderType + "; shape interface: " + typeName;
        System.out.println(slidePlaceholderMessage);

        IShape layoutPlaceholder = shape.getBasePlaceholder();
        if (layoutPlaceholder != null) {
            IPlaceholder layoutPlaceholderInfo = layoutPlaceholder.getPlaceholder();
            Byte layoutPlaceholderType = layoutPlaceholderInfo == null ? null : layoutPlaceholderInfo.getType();
            String layoutPlaceholderMessage = "  Layout placeholder: " + layoutPlaceholderType;
            System.out.println(layoutPlaceholderMessage);

            IShape masterPlaceholder = layoutPlaceholder.getBasePlaceholder();
            if (masterPlaceholder != null) {
                IPlaceholder masterPlaceholderInfo = masterPlaceholder.getPlaceholder();
                Byte masterPlaceholderType = masterPlaceholderInfo == null ? null : masterPlaceholderInfo.getType();
                String masterPlaceholderMessage = "  Master placeholder: " + masterPlaceholderType;
                System.out.println(masterPlaceholderMessage);
            }
        }
    }
} finally {
    presentation.dispose();
}

在普通幻灯片上编辑占位符会为该幻灯片创建或更改本地覆盖。编辑相关的版式或母版可能影响仍然继承该设置的所有幻灯片。普通本地形状没有基础占位符,仅因占据相同坐标而不会开始继承。

在占位符中更改文本

标题、居中标题、副标题、正文和文本占位符通常支持文本。在使用其 getTextFrame 方法之前,请先检查是否为 IAutoShape

下面的示例更新第一张幻灯片上的第一个标题占位符并保存结果:

import com.aspose.slides.*;

Presentation presentation = new Presentation("template.pptx");
try {
    ISlide slide = presentation.getSlides().get_Item(0);
    IAutoShape titleShape = null;

    for (IShape shape : slide.getShapes()) {
        if (!(shape instanceof IAutoShape)) {
            continue;
        }

        IAutoShape autoShape = (IAutoShape) shape;
        IPlaceholder placeholder = autoShape.getPlaceholder();
        if (placeholder == null) {
            continue;
        }

        byte placeholderType = placeholder.getType();
        if (placeholderType == PlaceholderType.Title || placeholderType == PlaceholderType.CenteredTitle) {
            titleShape = autoShape;
            break;
        }
    }

    if (titleShape == null) {
        throw new IllegalStateException("The first slide does not contain a title placeholder.");
    }

    titleShape.getTextFrame().setText("Quarterly Business Review");
    presentation.save("title-placeholder-updated.pptx", SaveFormat.Pptx);
} finally {
    presentation.dispose();
}

此模式避免将图片、图表、表格或媒体占位符强制转换为 IAutoShape。它还通过用途识别占位符,而不是依赖易碎的形状索引。

在版式上设置提示文本

提示文本是设计时在空占位符中显示的指示,例如 点击添加标题。应在版式占位符上设置自定义提示文本,而不是尝试通过普通幻灯片的形状集合访问它。通过 ISlide.getLayoutSlide 获取版式,并遍历 ILayoutSlide.getShapes 返回的集合。

下面的示例更改第一张幻灯片使用的版式上的标题和副标题提示:

import com.aspose.slides.*;

Presentation presentation = new Presentation("template.pptx");
try {
    ILayoutSlide layoutSlide = presentation.getSlides().get_Item(0).getLayoutSlide();

    for (IShape shape : layoutSlide.getShapes()) {
        if (!(shape instanceof IAutoShape)) {
            continue;
        }

        IAutoShape autoShape = (IAutoShape) shape;
        IPlaceholder placeholder = autoShape.getPlaceholder();
        if (placeholder == null) {
            continue;
        }

        byte placeholderType = placeholder.getType();

        if (placeholderType == PlaceholderType.Title || placeholderType == PlaceholderType.CenteredTitle) {
            autoShape.getTextFrame().setText("Enter a concise slide title");
        } else if (placeholderType == PlaceholderType.Subtitle) {
            autoShape.getTextFrame().setText("Enter a subtitle or reporting period");
        }
    }

    presentation.save("custom-placeholder-prompts.pptx", SaveFormat.Pptx);
} finally {
    presentation.dispose();
}

提示文本并非普通幻灯片内容。它用于 PowerPoint 等编辑应用中的空占位符。一旦用户或程序提供了真实内容,提示就不再显示。更改提示也不会替换使用该版式的幻灯片上已有的文本。

更新图片占位符

需要处理两种情况:

下面的示例同时支持这两种情况并保存演示文稿:

import com.aspose.slides.*;
import java.io.FileInputStream;

Presentation presentation = new Presentation("picture-template.pptx");
try {
    ISlide slide = presentation.getSlides().get_Item(0);
    IShape picturePlaceholder = null;

    for (IShape shape : slide.getShapes()) {
        IPlaceholder placeholder = shape.getPlaceholder();
        if (placeholder != null && placeholder.getType() == PlaceholderType.Picture) {
            picturePlaceholder = shape;
            break;
        }
    }

    if (picturePlaceholder == null) {
        throw new IllegalStateException("The first slide does not contain a picture placeholder.");
    }

    IPPImage image;
    try (FileInputStream imageStream = new FileInputStream("replacement.png")) {
        image = presentation.getImages().addImage(imageStream);
    }

    if (picturePlaceholder instanceof IPictureFrame) {
        IPictureFrame pictureFrame = (IPictureFrame) picturePlaceholder;
        pictureFrame.getPictureFormat().getPicture().setImage(image);
    } else {
        slide.getShapes().addPictureFrame(ShapeType.Rectangle, picturePlaceholder.getX(), picturePlaceholder.getY(), picturePlaceholder.getWidth(), picturePlaceholder.getHeight(), image);
        slide.getShapes().remove(picturePlaceholder);
    }

    presentation.save("picture-placeholder-updated.pptx", SaveFormat.Pptx);
} finally {
    presentation.dispose();
}

为一个空占位符创建的替代对象是本地图片框,而不是新占位符,因为 IShape.getPlaceholder 未提供设置器。它保留了保留位置,但不再继承占位符特定行为。如果必须保留占位符关系,请先在 PowerPoint 中准备并填充占位符,然后使用 Aspose.Slides 更新生成的 IPictureFrame

有关图像透明度、裁剪和其他图片特定效果,请参阅 Manage Picture Frames。这些操作属于图片框或图片填充,而不是占位符元数据。

使用图表和内容占位符

已填充的图表占位符可以由 IChart 表示。以下示例通过占位符类型和运行时接口查找此类图表,修改其标题并保存文件:

import com.aspose.slides.*;

Presentation presentation = new Presentation("chart-template.pptx");
try {
    ISlide slide = presentation.getSlides().get_Item(0);
    IChart placeholderChart = null;

    for (IShape shape : slide.getShapes()) {
        if (!(shape instanceof IChart)) {
            continue;
        }

        IChart chart = (IChart) shape;
        IPlaceholder placeholder = chart.getPlaceholder();
        if (placeholder != null && placeholder.getType() == PlaceholderType.Chart) {
            placeholderChart = chart;
            break;
        }
    }

    if (placeholderChart == null) {
        throw new IllegalStateException("The first slide does not contain a populated chart placeholder.");
    }

    placeholderChart.setTitle(true);
    placeholderChart.getChartTitle().addTextFrameForOverriding("Quarterly Revenue");
    presentation.save("chart-placeholder-updated.pptx", SaveFormat.Pptx);
} finally {
    presentation.dispose();
}

通用内容占位符通常具有 PlaceholderType.Object。在 PowerPoint 中,它充当多种内容类型的启动器,包括图表、表格、图示、图片和媒体。填充后,检查实际的形状接口以了解其包含的内容。特定版式还可以公开 PlaceholderType.ChartPlaceholderType.TablePlaceholderType.PicturePlaceholderType.MediaPlaceholderType.Diagram

Aspose.Slides 不会仅通过更改 IPlaceholder.getType 将空的 IAutoShape 占位符转换为 IChart; 该类型无法通过接口更改。要以编程方式填充空的图表或内容区域,请在占位符坐标处添加所需对象,然后删除空占位符。以下示例对图表执行此操作:

import com.aspose.slides.*;

Presentation presentation = new Presentation("content-template.pptx");
try {
    ISlide slide = presentation.getSlides().get_Item(0);
    IShape targetPlaceholder = null;

    for (IShape shape : slide.getShapes()) {
        IPlaceholder placeholder = shape.getPlaceholder();
        if (placeholder == null) {
            continue;
        }

        byte placeholderType = placeholder.getType();
        if (placeholderType == PlaceholderType.Chart || placeholderType == PlaceholderType.Object) {
            targetPlaceholder = shape;
            break;
        }
    }

    if (targetPlaceholder == null) {
        throw new IllegalStateException("The first slide does not contain a chart or content placeholder.");
    }

    IChart chart = slide.getShapes().addChart(ChartType.ClusteredColumn, targetPlaceholder.getX(), targetPlaceholder.getY(), targetPlaceholder.getWidth(), targetPlaceholder.getHeight());
    chart.setTitle(true);
    chart.getChartTitle().addTextFrameForOverriding("Quarterly Revenue");
    slide.getShapes().remove(targetPlaceholder);
    presentation.save("content-placeholder-replaced-with-chart.pptx", SaveFormat.Pptx);
} finally {
    presentation.dispose();
}

添加的图表是普通本地图表。它占据占位符的区域,但不从版式占位符继承。需要替换其分类、系列或工作簿数据时,请使用专门的 chart management articles

完整示例:更新文本或图像内容

下面的完整示例打开一个模板,在第一张幻灯片中搜索标题或图片占位符,检查占位符和形状类型,更新相应内容并保存输出。示例刻意避免假设形状索引或将每个占位符强制转换为相同接口。

import com.aspose.slides.*;
import java.io.FileInputStream;

Presentation presentation = new Presentation("template.pptx");
try {
    ISlide slide = presentation.getSlides().get_Item(0);
    boolean updated = false;

    for (IShape shape : slide.getShapes()) {
        IPlaceholder placeholder = shape.getPlaceholder();
        if (placeholder == null) {
            continue;
        }

        byte placeholderType = placeholder.getType();

        if ((placeholderType == PlaceholderType.Title || placeholderType == PlaceholderType.CenteredTitle) && shape instanceof IAutoShape) {
            IAutoShape titleShape = (IAutoShape) shape;
            titleShape.getTextFrame().setText("Quarterly Business Review");
            updated = true;
            break;
        }

        if (placeholderType == PlaceholderType.Picture) {
            IPPImage image;
            try (FileInputStream imageStream = new FileInputStream("replacement.png")) {
                image = presentation.getImages().addImage(imageStream);
            }

            if (shape instanceof IPictureFrame) {
                IPictureFrame pictureFrame = (IPictureFrame) shape;
                pictureFrame.getPictureFormat().getPicture().setImage(image);
            } else {
                slide.getShapes().addPictureFrame(ShapeType.Rectangle, shape.getX(), shape.getY(), shape.getWidth(), shape.getHeight(), image);
                slide.getShapes().remove(shape);
            }

            updated = true;
            break;
        }
    }

    if (!updated) {
        throw new IllegalStateException("No supported title or picture placeholder was found on the first slide.");
    }

    presentation.save("placeholder-content-updated.pptx", SaveFormat.Pptx);
} finally {
    presentation.dispose();
}

常见问题

什么是基础占位符?

基础占位符是版式或母版上对应的形状,其他占位符从其继承。使用 IShape.getBasePlaceholder 可检索它。普通本地形状返回 null,因为它不属于占位符层次结构。

我可以通过编辑版式占位符来更改所有幻灯片的标题吗?

您可以通过版式更改继承的格式或提示文本,但现有的标题内容存储在普通幻灯片上。要在整个演示文稿中替换实际的标题文本,需要遍历幻灯片并更新每个标题占位符。

如何管理日期、幻灯片编号、页眉和页脚占位符?

在相应的幻灯片、版式、母版、备注或讲义范围内使用页眉页脚管理器。完整示例请参阅 Manage Presentation Header and Footer