如何在 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 幻灯片

图像属性

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

属性说明范例
<代码>高度以点为单位设置图像的高度。<代码>image.Height = 300;
<代码>宽度以点为单位设置图像的宽度。<代码>image.Width = 400;
<代码>角度以指定角度(度)旋转图像。<代码>image.Angle = 45;
<代码>职位使用 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 幻灯片中删除按索引排列的图像(查看后)

常见问题解答

在 PowerPoint 演示文稿中添加图像时,可以使用哪些图像文件格式?

IronPPT 支持常见的图像格式,包括 JPEG、PNG、BMP、GIF 和 TIFF。在将图像添加到演示文稿时,该库可自动处理格式转换和优化,确保与大多数图像源兼容。

如何在演示文稿中的特定幻灯片上添加图片?

要使用 IronPPT 添加图像,首先要使用 Image.Create() 创建一个图像对象,其中包含图像文件路径,然后使用 slide.Images.Add() 将其添加到特定幻灯片中。您可以通过索引访问幻灯片,例如:ppt.Slides[0].Images.Add(image) 将图片添加到第一张幻灯片。

我可以通过编程控制图片的大小和尺寸吗?

是的,IronPPT 允许您使用图像对象的 "宽度 "和 "高度 "属性设置图像尺寸。只需在将图像添加到幻灯片之前或之后,以点为单位为这些属性赋值即可,例如 image.Width = 400 和 image.Height = 300。

如何在幻灯片的特定位置放置图片?

IronPPT 可使用带有 x、y 坐标的 Position 属性对图像进行精确定位。坐标系以左上角(0,0)为起点,数值以点为单位,可将图像放置在幻灯片表面的任何位置。

是否可以替换 PowerPoint 演示文稿中的现有图像?

是的,IronPPT 支持替换演示文稿中的现有图像。您可以识别要替换的图像,并用新的图像对象替代它们,同时保持相同的位置和属性,确保无缝更新您的可视化内容。

能否以编程方式删除幻灯片中的图像?

IronPPT 提供从演示文稿中单独或批量移除图像的功能。您可以通过访问幻灯片的图像集合并使用适当的移除方法来移除特定图像。

Ahmad Sohail
全栈开发者

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

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

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

准备开始了吗?
Nuget 下载 3,607 | 版本: 2025.12 刚刚发布