C# PowerPoint - Render PowerPoint to Other Images
Online C# Tutorial for How to Convert PowerPoint to Raster Images, .NET Graphics, and REImage
PowerPoint to Multiple Image Forms Conversion
RasterEdge.com provides C# developers with mature PowerPoint document processing and rendering library SDK. Our XDoc.PowerPoint allows C# developers to perform high performance conversions from PowerPoint document to multiple image forms.
c# printdocument pdf example,
asp.net c# read pdf file,
pdf to jpg c# open source,
c# pdfsharp add image,
asp.net mvc 5 export to pdf,
pdf417 c# open source.
Besides raster image Jpeg, images forms like Png, Bmp, Gif, .NET Graphics, and REImage (an intermediate class) are also supported. In the following parts, we provide some examples for these PowerPoint conversions.
Related .net document control helps:
asp.net image viewer jquery: ASP.NET Image Viewer Control(MVC & WebForms): view, annotate, redact, convert image files in html, JQuery
asp.net sharepoint document viewer free: ASP.NET SharePoint Document Viewer: view, annotate, redact documents in SharePoint
asp.net office document viewer: ASP.NET Office Word Document Viewer: view Word doc files online using C# in ASP.NET MVC web applications
powerpoint viewer asp.net mvc: ASP.NET PowerPoint Document Viewer Control (MVC & WebForms): view ppt, pptx files online in C# using ASP.NET
asp.net display tiff images: ASP.NET Tiff Viewer: view, annotate multipage Tiff images in ASP.NET MVC, WebForms using C# Control
asp.net pdf editor component: EdgePDF: ASP.NET PDF Editor Web Control: Online view, annotate, redact, edit, process, convert PDF documents
asp.net mvc pdf editor control: ASP.NET MVC PDF Viewer & Editor: view, annotate, redact, edit PDF document in C# ASP.NET MVC
C# DLLs: Convert PowerPoint to Images
Add necessary XDoc.PowerPoint DLL libraries into your created C# application as references.
c# pdfsharp fill pdf form,
vb.net wpf pdf viewer,
vb.net password protect pdf file,
convert pdf to svg c#,
c# convert doc to pdf free,
itextsharp insert image in pdf vb.net,
vb net pdf read image.
RasterEdge.Imaging.Basic.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
RasterEdge.Imaging.Basic.Codec.dll
Use corresponding namespaces;
using RasterEdge.Imaging.Basic;
using RasterEdge.XDoc.PowerPoint;
C# Sample Code for PowerPoint to Png
You can use this sample code to convert PowerPoint file to Png image.
asp.net multipage tiff viewer with thumbnails,
mvc view to pdf itextsharp,
asp.net display image from byte array,
asp.net pdf reader,
asp net view word document in browser,
preview pdf in asp.net mvc,
pdf editor in asp.net mvc.
// Load a PowerPoint file.
String inputFilePath = Program.RootPath + "\\" + "1.pptx";
PPTXDocument doc = new PPTXDocument(inputFilePath);
// Get the first page of PowerPoint file.
PPTXPage page = (PPTXPage)doc.GetPage(0);
// Convert the first PowerPoint page to a PNG file.
page.ConvertToImage(ImageType.PNG, Program.RootPath + "Output.png");
|
C# Sample Code for PowerPoint to Bmp
Or use this piece of C# code to implement PowerPoint to Bmp conversion.
// Used to register all DLL assemblies.
WorkRegistry.Reset();
// Load a PowerPoint file.
String inputFilePath = Program.RootPath + "\\" + "1.pptx";
PPTXDocument doc = new PPTXDocument(inputFilePath);
// Get the first page of PowerPoint file.
PPTXPage page = (PPTXPage)doc.GetPage(0);
// Convert the first PowerPoint page to a BMP file.
page.ConvertToImage(ImageType.BMP, Program.RootPath + "\\Output.bmp");
|
C# Sample Code for PowerPoint to Gif
You can also directly change PowerPoint to Gif image file in C# program.
// Used to register all DLL assemblies.
WorkRegistry.Reset();
// Load a PowerPoint file.
String inputFilePath = Program.RootPath + "\\" + "1.pptx";
PPTXDocument doc = new PPTXDocument(inputFilePath);
// Get the first page of PowerPoint file.
PPTXPage page = (PPTXPage)doc.GetPage(0);
// Convert the first PowerPoint page to a GIF file.
page.ConvertToImage(ImageType.GIF, Program.RootPath + "\\Output.gif");
|
C# Sample Code for PowerPoint to REImage
Instead, you may render PowerPoint to REImage (an intermediate class) and then do further manipulations. In order to run the demo code, you need use namespace "RasterEdge.Imaging.Raster.Core";
// Used to register all DLL assemblies.
WorkRegistry.Reset();
// Load a PowerPoint file.
String inputFilePath = Program.RootPath + "\\" + "1.pptx";
PPTXDocument doc = new PPTXDocument(inputFilePath);
// Get the first page of PowerPoint.
PPTXPage page = (PPTXPage)doc.GetPage(0);
// Convert the first page to a REImage object.
REImage image = new REImage(page.ConvertToImage());
// Do something ...
|
C# Sample Code for PowerPoint to .NET Bitmap
Moreover, our SDK also allows you to render PowerPoint to .NET Bitmap in C# programming.
// Used to register all DLL assemblies.
WorkRegistry.Reset();
// Load a PowerPoint file.
String inputFilePath = Program.RootPath + "\\" + "1.pptx";
PPTXDocument doc = new PPTXDocument(inputFilePath);
// Get the first page of PowerPoint.
PPTXPage page = (PPTXPage)doc.GetPage(0);
// Render the page to a Bitmap with default setting.
Bitmap bitmap1 = page.GetBitmap();
bitmap1.Save(inputFilePath + "_1.bmp");
// ...
// Enlarge the page with factor 2.
float zoomRatio = 2.0F;
Bitmap bitmap2 = page.GetBitmap(zoomRatio);
bitmap2.Save(inputFilePath + "_2.bmp");
// ...
// Render the page with a resolution of 300 dpi.
int targetResolution = 300;
Bitmap bitmap3 = page.GetBitmap(targetResolution);
bitmap3.Save(inputFilePath + "_3.bmp");
// ...
|