C#/VB.NET如何实现从PPT中提取图片

发布时间:2023-03-14 11:39:24 作者:iii
来源:亿速云 阅读:109

本文小编为大家详细介绍“C#/VB.NET如何实现从PPT中提取图片”,内容详细,步骤清晰,细节处理妥当,希望这篇“C#/VB.NET如何实现从PPT中提取图片”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。

程序环境

本次测试时,在程序中引入 Free Spire.Presentation.dll 文件。

方法1

将Free Spire.Presentation for .NET 下载到本地,解压,找到 BIN 文件夹下的 Spire.Presentation.dll。然后在 Visual Studio 中打开“解决方案资源管理器”,鼠标右键点击“引用”,“添加引用”,将本地路径 BIN 文件夹下的 dll 文件添加引用至程序。

方法2:

通过 NuGet安装。可通过以下 2 种方法安装:

1. 可以在 Visual Studio 中打开“解决方案资源管理器”,鼠标右键点击“引用”,“管理 NuGet 包”,然后搜索“Free Spire.Presentation”,点击“安装”。等待程序安装完成。

2. 将以下内容复制到 PM 控制台安装。

Install-Package FreeSpire.Presentation -Version 7.8

从整个演示文稿中提取图像

完整代码

C#

using Spire.Presentation;
using Spire.Presentation.Collections;
using System.Drawing;

namespace ExtractImagesFromPresentation
{
    internal class Program
    {
        static void Main(string[] args)
        {
            //初始化Presentation类的实例
            Presentation ppt = new Presentation();

            //加载PowerPoint演示文稿
            ppt.LoadFromFile("示例文档.pptx");

            //获取演示文稿的图像集
            ImageCollection imageCollection = ppt.Images;

            //遍历集合中的图像
            for (int i = 0; i < imageCollection.Count; i++)
            {
                //提取图像
                imageCollection[i].Image.Save(string.Format("Presentation\\图片{0}.png", i));
            }

            ppt.Dispose();
        }
    }
}

VB.NET

Imports Spire.Presentation
Imports Spire.Presentation.Collections

Namespace ExtractImagesFromPresentation
    Friend Class Program
        Private Shared Sub Main(ByVal args As String())
            '初始化Presentation类的实例
            Dim ppt As Presentation = New Presentation()

            '加载PowerPoint演示文稿
            ppt.LoadFromFile("示例文档.pptx")

            '获取演示文稿的图像集
            Dim imageCollection As ImageCollection = ppt.Images

            '遍历集合中的图像
            For i As Integer = 0 To imageCollection.Count - 1
                '提取图像
                imageCollection(i).Image.Save(String.Format("Presentation\图片{0}.png", i))
            Next

            ppt.Dispose()
        End Sub
    End Class
End Namespace

从特定演示幻灯片中提取图像

完整代码

C#

using Spire.Presentation;

namespace ExtractImagesFromSlide
{
    internal class Program
    {
        static void Main(string[] args)
        {
            //初始化 Presentation 类的一个实例
            Presentation ppt = new Presentation();
            //加载 PowerPoint 演示文稿
            ppt.LoadFromFile("示例文档.pptx");

            //获取指定幻灯片
            ISlide slide = ppt.Slides[1];

            int i = 0;
            //遍历指定幻灯片上的所有形状
            foreach (IShape s in slide.Shapes)
            {
                //检查形状是否为SlidePicture类型
                if (s is SlidePicture)
                {
                    //提取图像
                    SlidePicture ps = s as SlidePicture;
                    ps.PictureFill.Picture.EmbedImage.Image.Save(string.Format(@"D:\.NET\提取图片\bin\Debug\Slide\图像{0}.png", i));
                    i++;
                }
                //检查形状是否为 PictureShape 类型
                if (s is PictureShape)
                {
                    //提取图像
                    PictureShape ps = s as PictureShape;
                    ps.EmbedImage.Image.Save(string.Format(@"D:\.NET\提取图片\bin\Debug\Slide\图像{0}.png", i));
                    i++;
                }
            }
        }
    }
}

VB.NET

Imports Spire.Presentation

Namespace ExtractImagesFromSlide
    Friend Class Program
        Private Shared Sub Main(ByVal args As String())
            '初始化 Presentation 类的一个实例
            Dim ppt As Presentation = New Presentation()
            '加载 PowerPoint 演示文稿
            ppt.LoadFromFile("示例文档.pptx")

            '获取指定幻灯片
            Dim slide As ISlide = ppt.Slides(1)

            Dim i = 0
            '遍历指定幻灯片上的所有形状
            For Each s As IShape In slide.Shapes
                '检查形状是否为SlidePicture类型
                If TypeOf s Is SlidePicture Then
                    '提取图像
                    Dim ps As SlidePicture = TryCast(s, SlidePicture)
                    ps.PictureFill.Picture.EmbedImage.Image.Save(String.Format("D:\.NET\提取图片\bin\Debug\Slide\图像{0}.png", i))
                    i += 1
                End If
                '检查形状是否为 PictureShape 类型
                If TypeOf s Is PictureShape Then
                    '提取图像
                    Dim ps As PictureShape = TryCast(s, PictureShape)
                    ps.EmbedImage.Image.Save(String.Format("D:\.NET\提取图片\bin\Debug\Slide\图像{0}.png", i))
                    i += 1
                End If
            Next
        End Sub
    End Class
End Namespace

读到这里,这篇“C#/VB.NET如何实现从PPT中提取图片”文章已经介绍完毕,想要掌握这篇文章的知识点还需要大家自己动手实践使用过才能领会,如果想了解更多相关内容的文章,欢迎关注亿速云行业资讯频道。

推荐阅读:
  1. 怎么用Markdown软件Marp编写PPT
  2. ppt幻灯片中放映方式有哪些

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

ppt vb.net

上一篇:python3.x怎么向mysql存储图片并显示

下一篇:nonebot插件之chatgpt如何使用

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》