彩票走势图

PPT处理控件Aspose.Slides功能演示:在 C# 中将 PPTX/PPT 转换为 PNG 图像

翻译|使用教程|编辑:李显亮|2021-09-06 10:17:50.947|阅读 318 次

概述:PNG是使用无损压缩的最流行的图像格式之一。因此,在本文中,将学习如何使用 C# 将 PowerPoint PPTX 或 PPT 中的幻灯片转换为 PNG 图像。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

在某些情况下,可能需要将 PowerPoint 演示文稿中的幻灯片转换为图像。例如,在您的 Web 或桌面应用程序中嵌入演示文稿、生成缩略图等。PNG是使用无损压缩的最流行的图像格式之一。因此,在本文中,您将学习如何使用 C# 将 PowerPoint PPTX 或 PPT 中的幻灯片转换为 PNG 图像。

  • 将 PowerPoint PPTX 或 PPT 转换为 PNG

为了将 PPTX 或 PPT 演示文稿转换为 PNG,我们将使用Aspose.Slides for .NET,它是一个功能丰富的 API,可让您使用 C# 创建、修改和转换 PowerPoint 和 OpenOffice 演示文稿。

>>你可以点击这里下载Aspose.Slides 最新版测试体验。

在 C# 中将 PowerPoint PPTX 或 PPT 转换为 PNG

以下是使用 C# 将 PowerPoint PPTX 中的幻灯片转换为 PNG 图像的步骤。

  • 首先,创建Presentation 类的一个实例 来加载演示文稿。
  • 循环每一个 I幻灯片式 的 Presentation.Slides 集合。
  • 定义生成的 PNG 图像的尺寸。
  • 使用ISlide.GetThumbnail(float ScaleX, float ScaleY) 方法生成每张幻灯片的图像,并将图像 的引用放入 Bitmap 对象。
  • 最后,使用Bitmap.Save(String, System.Drawing.Imaging.ImageFormat.Png) 方法将图像保存为 PNG 。

以下代码示例展示了如何将 PowerPoint PPTX 转换为 PNG。

// Load PowerPoint presentation
using (Presentation pres = new Presentation("presentation.pptx"))
{
    // User defined dimension
    int desiredX = 1200;
    int desiredY = 800;

    // Getting scaled value of X and Y
    float ScaleX = (float)(1.0 / pres.SlideSize.Size.Width) * desiredX;
    float ScaleY = (float)(1.0 / pres.SlideSize.Size.Height) * desiredY;

    foreach (ISlide sld in pres.Slides)
    {
        // Create a full scale image
        Bitmap bmp = sld.GetThumbnail(ScaleX, ScaleY);

        // Save the image to disk in PNG format
        bmp.Save(String.Format("slide_{0}.png", sld.SlideNumber), System.Drawing.Imaging.ImageFormat.Png);
    }
}

如果你想试用Aspose的全部完整功能,可联系在线客服获取30天临时授权体验。


还想要更多吗?您可以点击阅读【Aspose最新资源在线文库】查找需要的教程资源。如果您有任何疑问或需求,请随时加入Aspose技术交流群(761297826),我们很高兴为您提供查询和咨询

标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn


为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP