C# PowerPoint Library
How to C#: Install, Deploy and Distribute XDoc.PowerPoint
Online C# Guide for XDoc.PowerPoint Installation, Deployment and Distribution
How to download, install XDoc.PowerPoint C# library in ASP.NET, WinForms application?
There are two parts on this page, including system requirements for using XDoc.PowerPoint, and how to install XDoc.PowerPoint into visual studio C# .NET Applications.
System Requirements
- Windows XP SP3 or later
- Microsoft .NET Framework 2.0 or later
Install XDoc.PowerPoint in C# Project
Add necessary references to your C#.NET project. Right-click the project and select "Add Reference..." to locate and add the following DLLs as project references;
RasterEdge.Imaging.Basic.dll
RasterEdge.Imaging.Basic.Codec.dll
RasterEdge.XDoc.Office.Inner.Common.dll
RasterEdge.Imaging.Drawing.dll
RasterEdge.Imaging.Processing.dll
RasterEdge.XDoc.Office.Inner.Office03.dll
RasterEdge.Imaging.Font.dll
RasterEdge.XDoc.PowerPoint.dll
RasterEdge.XImage.Raster.Core.dll
RasterEdge.XImage.Raster.dll
Use corresponding namespaces;
using RasterEdge.Imaging.Basic;
using RasterEdge.XDoc.PowerPoint;
Add the following C# demo code to your project (PowerPoint to Png conversion demo).
// Convert PowerPoint file to Png image.
PPTXDocument docx = new PPTXDocument(filePath);
pptx.ConvertToImages(ImageType.PNG, @"C:\output\", "test");
|