如何在 PowerPoint 中管理图片

This article was translated from English: Does it need improvement?
Translated
View the article in English

多媒体元素构成了 PowerPoint 演示文稿的整体结构。 尤其是图片,它可以提供视觉背景并强化每张幻灯片上呈现的信息。有效的图像管理(无论是插入新的视觉效果、更新现有的视觉效果,还是清理过时的图形)对于保持演示文稿的专业性和可扩展性至关重要。

本指南演示了如何使用 IronPPT 以编程方式处理图像。

开始使用 IronPPT

今天在您的项目中使用 IronPPT,免费试用。

第一步:
green arrow pointer


添加图片

要使用 IronPPT 在 PowerPoint 文档中添加图像,请创建一个新文档对象(或从现有文件加载)。 然后,从引用文件的 Image 类中创建一个图像对象。图片加载完成后,将其添加到文档中,并指定其应出现的幻灯片编号。 从这里开始,可以使用 Height, WidthAngle 等属性更改图像属性。 最后,导出带有新添加图片的文档。

:path=/static-assets/ppt/content-code-examples/how-to/manage-image-add-image-add-image.cs
using IronPPT;
using IronPPT.Models;

// Create a new presentation document
var document = new PresentationDocument();

// Create and load an image from file
Image image = new Image();
image.LoadFromFile("image.jpg");

// Add image to the first slide (index 0)
var newImage = document.AddImage(image, 0);

// Rotate the image 180 degrees
newImage.Angle = 180;

// Save the presentation as a .pptx file
document.Save("adding-image.pptx");
IRON VB CONVERTER ERROR developers@ironsoftware.com
$vbLabelText   $csharpLabel
在 PowerPoint 幻灯片中添加图像

图像属性

探索下表中的图像属性选项。

属性 说明 范例
Height 以点为单位设置图像的高度。 image.Height = 300;
Width 以点为单位设置图像的宽度。 image.Width = 400;
Angle 以指定角度(度)旋转图像。 image.Angle = 45;
Position 使用 x 和 y 坐标设置幻灯片上图像的位置。 image.Position = (200, 200);
FrameShape 使用 ShapeType 枚举值设置图像的框架形状。 image.FrameShape = IronPPT.Enums.ShapeType.RoundRectangle;

修改已添加的图像属性

将图片添加到幻灯片后,您可以修改其属性以调整外观和位置。 例如,使用 Height, WidthAngle 等属性自定义图像尺寸和旋转。 通过调整这些设置,您可以微调图像在演示文稿中的显示效果。

:path=/static-assets/ppt/content-code-examples/how-to/manage-image-add-image-modify-properties.cs
using IronPPT;
using IronPPT.Models;
using IronPPT.Enums;

// Load an existing presentation document
var document = new PresentationDocument("existing-presentation.pptx");

// Create and load an image from file
Image image = new Image();
image.LoadFromFile("image.jpg");

// Add image to the second slide (index 1)
var newImage = document.AddImage(image, 1);

// Modify image properties
newImage.Angle = 45; // Rotate the image 45 degrees
newImage.FrameShape = ShapeType.RoundRectangle; // Set the frame shape to Rounded Rectangle
newImage.Position = (180, 180); // Set the position to coordinates (180, 180)
newImage.Width = 300; // Set the width to 300 points
newImage.Height = 300; // Set the height to 300 points

// Save the modified presentation as a new .pptx file
document.Save("modifying-image-properties.pptx");
IRON VB CONVERTER ERROR developers@ironsoftware.com
$vbLabelText   $csharpLabel
在 PowerPoint 中修改图像属性

替换图片

使用 IronPPT,替换图片是一项直观的任务。 首先,将演示文档和新图片加载到一个全新的 Image 对象中。 然后,选择要更新的图片的幻灯片和索引,如 Slides[0].Images[0] (针对第一张幻灯片上的第一张图片)。 完成后,使用新图像对象调用 Replace 方法并导出文件。

:path=/static-assets/ppt/content-code-examples/how-to/manage-image-replace-image-replace-image.cs
using IronPPT;
using IronPPT.Models;

// Load an existing presentation
var document = new PresentationDocument("sample.pptx");

// Load the replacement image
Image replaceImage = new Image();
replaceImage.LoadFromFile("sample.png");

// Replace the first image found in the first slide
document.Slides[0].Images[0].Replace(replaceImage);

// Save changes (overwriting the original file)
document.Save("sample.pptx");
IRON VB CONVERTER ERROR developers@ironsoftware.com
$vbLabelText   $csharpLabel

原文

替换 PowerPoint 幻灯片中的图像(替换前)

结果

替换 PowerPoint 幻灯片中的图像(替换后)

按索引移除图片

删除图片最简单的方法是按其索引位置删除。 访问幻灯片的图像集合,并使用 Remove 方法和要删除的图像的零基索引。 当您知道图片在图片集中的确切位置时,这种方法就能很好地发挥作用。

:path=/static-assets/ppt/content-code-examples/how-to/manage-image-remove-image-remove-by-index.cs
using IronPPT;

// Create a new presentation
var document = new PresentationDocument("real_sample.pptx");

// Remove the first image found in the first slide
document.Slides[1].Images[0].Remove();

// Save the updated presentation
document.Save("removed-image.pptx");
IRON VB CONVERTER ERROR developers@ironsoftware.com
$vbLabelText   $csharpLabel

图像移除前

从 PowerPoint 幻灯片中按索引删除图像(视图之前)

图像去除后

从 PowerPoint 幻灯片中按索引删除图像(查看后)

删除所有图片

对于需要批量删除文档中所有图像文件的情况,我们可以使用两个 for 循环:一次遍历所有文档页面,两次重复遍历并删除每页中所有已识别的图像。 下面给出一个例子。

:path=/static-assets/ppt/content-code-examples/how-to/manage-image-remove-all-images.cs
using IronPPT;
using IronPPT.Models;

// Load an existing presentation
var document = new PresentationDocument("real_sample.pptx");

// Remove all images from every slide
for (int s = 0; s < document.Slides.Count; s++)       // Loop through all slides
{
    var slide = document.Slides[s];                   // Get the current slide

    for (int i = slide.Images.Count - 1; i >= 0; i--) // Loop backward through images on this slide
    {
        slide.Images[i].Remove();                     // Remove each image
    }
}

// Save the updated presentation
document.Save("removed-images.pptx");
IRON VB CONVERTER ERROR developers@ironsoftware.com
$vbLabelText   $csharpLabel

批量删除之前

批量从 PowerPoint 幻灯片中按索引删除图像(视图之前)

批量删除后

如您所见,幻灯片 2 和 4 中的所有图片都已删除。

批量从 PowerPoint 幻灯片中删除按索引排列的图像(查看后)

常见问题解答

如何使用 IronPPT 在 PowerPoint 幻灯片中添加图像?

通过 IronPPT,您可以利用其直观的 API 在任何幻灯片的特定位置插入图片,从而在 PowerPoint 幻灯片中添加图片。

使用 IronPPT 在 PowerPoint 中移除图像的过程是怎样的?

IronPPT 允许您通过识别图像对象并使用适当的 API 调用将其从演示文稿中删除,从而从 PowerPoint 幻灯片中删除图像。

能否使用 IronPPT 替换 PowerPoint 演示文稿中的现有图像?

是的,IronPPT 提供了替换现有图片的功能,通过删除旧图片并在其位置上添加新图片,确保您的演示文稿保持最新。

IronPPT 是否支持在一张幻灯片上管理多个图像?

IronPPT 支持在一张幻灯片上管理多张图片,允许您根据需要添加、删除或替换图片,以定制您的演示文稿。

IronPPT 的 PowerPoint 幻灯片支持哪些图像格式?

IronPPT 支持各种图像格式,包括 JPEG、PNG 和 BMP,使您能够在 PowerPoint 演示文稿中使用各种图像类型。

是否可以使用 IronPPT 调整 PowerPoint 中图片的大小?

是的,IronPPT 提供调整图片大小的功能,允许您调整图片尺寸,使其完全适合您的幻灯片布局。

IronPPT 如何处理 PowerPoint 幻灯片中的图像透明度?

IronPPT 支持图像透明度,让您可以在 PowerPoint 演示文稿中无缝地加入具有透明背景的图像。

IronPPT 可以用于在 PowerPoint 演示文稿的批处理中管理图像吗?

IronPPT 能够处理批处理,使您能够高效地管理多张幻灯片上的多幅图像。

Ahmad Sohail
全栈开发者

Ahmad 是一名全栈开发人员,拥有扎实的 C#、Python 和 Web 技术基础。他对构建可扩展的软件解决方案深感兴趣,并喜欢探索设计和功能在实际应用中如何结合。

在加入 Iron Software 团队之前,Ahmad 致力于自动化项目和 API 集成,专注于提高性能和开发人员体验。

在业余时间,他喜欢尝试 UI/UX 想法,贡献开源工具,并偶尔从事技术写作和文档工作,以便让复杂主题更易于理解。

准备开始了吗?
Nuget 下载 3,325 | Version: 2025.11 刚刚发布