Convert PPT to Word in C#
Render PowerPoint slides as images in Word using Aspose.Slides for .NET and Aspose.Words for .NET.
Convert PowerPoint to Word Using Aspose.Slides and Aspose.Words
Aspose.Slides for .NET can render presentation slides as images, while Aspose.Words for .NET can insert those images into a Word document and save it in DOCX format.
Convert PowerPoint to Word in C#
You can convert PPT to Word with the following C# code:
C# code for converting PowerPoint to Word
using Aspose.Slides;
using Aspose.Words;
using System.IO;
using var presentation = new Presentation("template.ppt");
var wordDocument = new Aspose.Words.Document();
var documentBuilder = new DocumentBuilder(wordDocument);
foreach (var slide in presentation.Slides)
{
using var slideImage = slide.GetImage(1f, 1f);
using var imageStream = new MemoryStream();
slideImage.Save(imageStream, ImageFormat.Png);
imageStream.Position = 0;
documentBuilder.InsertImage(imageStream);
documentBuilder.InsertBreak(BreakType.PageBreak);
}
wordDocument.Save("document.docx");
How to Convert PPT to Word
Install
Aspose.Slides for .NETandAspose.Words for .NET.Load the PPT file with a
Presentationobject.Create a Word
DocumentandDocumentBuilder.Render slide images with
GetImageand insert them withDocumentBuilder.Save the Word document as DOCX.
Free Online Converter
Convert presentations and slides online.
Other Supported Conversions
You can also convert PowerPoint to files in other formats.
PPT TO BMP (Bitmap Image)
PPT TO EMF (Enhanced Metafile Format)
PPT TO GIF (Graphics Interchange Format)
PPT TO HTML (Hypertext Markup Language)
PPT TO JPEG (JPEG Image)
PPT TO ODP (OpenDocument Presentation Format)
PPT TO OTP (OpenDocument Presentation Template)
PPT TO PDF (Portable Document Format)
PPT TO PNG (Portable Network Graphics)
PPT TO POT (PowerPoint Template Files)
PPT TO POTM (PowerPoint Macro-Enabled Template)
PPT TO POTX (PowerPoint Open XML Template)
PPT TO PPS (PowerPoint Slide Show)
PPT TO PPSM (Macro-Enabled Slide Show)
PPT TO PPSX (PowerPoint Open XML Slide Show)
PPT TO PPTM (Macro-Enabled Presentation)
PPT TO PPTX (Open XML Presentation Format)
PPT TO SVG (Scalable Vector Graphics)
PPT TO SWF (SWF Format)
PPT TO TIFF (Tagged Image File Format)
PPT TO VIDEO (Video Format)
PPT TO XPS (XML Paper Specification)