Convert PPTX to DOT using C# or online
Build Microsoft PowerPoint PPTX Presentation to Word DOT document conversion apps on .NET Framework, .NET Core, Windows Azure, Mono or Xamarin Platforms.
How to Convert PPTX to DOT Using C#
In order to automate the process for any PowerPoint pptx presentation to Word dot files batch conversion, we’ll use Aspose.Slides for .NET and Aspose.Words for .NET APIs. The former is a PowerPoint presentation manipulation API that lets you create or modify Microsoft PowerPoint slides. Whereas, the latter is a word processing API for processing or manipulating Microsoft Word documents. Both APIs are part of Aspose.Total for .NET package. You can directly download from Nuget or may use the following commands from the Package Manager Console.
Package Manager Console Command
PM> Install-Package Aspose.Total
Steps to Convert PPTX to DOT via C#
Aspose.Total makes it easy for the developers to load & convert PPTX files to DOT in just a few lines of code.
- Add reference of Aspose.Slides for .NET and Aspose.Words for .NET
- Load PowerPoint PPTX presentation using Aspose.Slides.Presentation class
- Save the document into MemoryStream Object
- Create Aspose.Words.Document and intialize it with MemoryStream Object
- Save the document using Aspose.Words.Document.Save(“output.dot”, SaveFormat.Dot)
System Requirements
Aspose.Total for .NET is supported on all major operating systems. Just make sure that you have the following prerequisites.
- Microsoft Windows or a compatible OS with .NET Framework, .NET Core, Windows Azure, Mono or Xamarin Platforms.
- Development environment like Microsoft Visual Studio.
- Aspose.Slides for .NET and Aspose.Words for .NET DLL referenced in your project.
This code sample shows how to convert a PPTX to DOT using C#
Aspose.Slides.Presentation pptx = new Aspose.Slides.Presentation("source.pptx");
var stream = new MemoryStream();
pptx.Save(stream, Aspose.Slides.Export.SaveFormat.Html);
stream.Flush();
stream.Seek(0, SeekOrigin.Begin);
// stream.Position = 0;
// Load the content of the presentation to a Word document
var dot = new Aspose.Words.Document(stream);
// Save the Word DOT document
dot.Save("output.dot", Aspose.Words.SaveFormat.Dot);
Online Converter for PPTX to DOT
Free App to Convert PPTX to DOT
Check our live demos for PPTX to DOT conversion with following benefits.
About Aspose.Total
Aspose.Total for .NET is complete package of document Manipulation APIs. APIs are easily integratable within any .NET based application to manipulate Microsoft Word, Excel, PowerPoint, Outlook, PDF, Images, Barcodes and more than 100 other formats. Programmers can easily use these to create, modify, render, print and convert between most popular file formats within any .NET, C#, ASP.NET and VB.NET applications without the need of any other software.Other Supported Conversions
You can also convert PPTX into many other file formats including few listed below.