Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
The following table indicates the input and output file formats supported by Aspose.Words for .NET:
| Format | Description | Load | Save | Remarks |
|---|---|---|---|---|
DOC |
Microsoft Word 97 – 2007 Document |
|
|
|
DOT |
Microsoft Word 97 – 2007 Template |
|
|
|
DocPreWord60 |
The document is in the Word 6 or Word 95 format |
|
||
DOCX |
Office Open XML WordprocessingML Document (macro-free) |
|
|
|
DOCM |
Office Open XML WordprocessingML Macro-Enabled Document |
|
|
|
DOTX |
Office Open XML WordprocessingML Template (macro-free) |
|
|
|
DOTM |
Office Open XML WordprocessingML Macro-Enabled Template |
|
|
|
XLSX |
XML-based file format for representing spreadsheets |
|
||
FlatOpc |
Office Open XML WordprocessingML stored in a flat XML file instead of a ZIP package |
|
|
|
FlatOpcMacroEnabled |
Office Open XML WordprocessingML Macro-Enabled Document stored in a flat XML file instead of a ZIP package |
|
|
|
FlatOpcTemplate |
Office Open XML WordprocessingML Template (macro-free) stored in a flat XML file instead of a ZIP package |
|
|
|
FlatOpcTemplateMacroEnabled |
Office Open XML WordprocessingML Macro-Enabled Template stored in a flat XML file instead of a ZIP package |
|
|
|
XML |
XML document |
|
||
RTF |
RTF format |
|
|
|
WordML |
Microsoft Word 2003 WordprocessingML format |
|
|
|
HTML |
HTML or XHTML format |
|
|
|
MHTML |
MHTML (Web archive) format |
|
|
|
MOBI |
MOBI is an eBook format used by the MobiPocket Reader and Amazon Kindle Readers |
|
|
|
AZW3 |
AZW3 is an eBook format used by Amazon Kindle readers |
|
|
|
CHM |
CHM (Compiled HTML Help) format |
|
||
ODT |
ODF Text Document |
|
|
|
OTT |
ODF Text Document Template |
|
|
|
TXT |
Plain Text |
|
|
|
MD |
Markdown Document |
|
|
|
PDF |
Adobe Portable Document format |
|
|
|
EPS |
Encapsulated Postscript file format |
|
||
XPS |
Saves the document in the XPS (XML Paper Specification) format |
|
||
XamlFixed |
Saves the document in the Extensible Application Markup Language (XAML) format as a fixed document |
|
||
SVG |
Saves the document in the SVG (Scalable Vector Graphics) format |
|
||
HtmlFixed |
Saves the document in the HTML format using absolutely positioned elements |
|
||
OpenXps |
Saves the document in the OpenXPS (Ecma-388) format |
|
||
PS |
Saves the document in the PS (PostScript) format |
|
||
PCL |
Saves the document in the PCL (Printer Control Language) format |
|
||
EPUB |
IDPF EPUB format |
|
|
|
XamlFlow |
Beta Saves the document in the Extensible Application Markup Language (XAML) format as a flow document |
|
||
XamlFlowPack |
Beta Saves the document in the Extensible Application Markup Language (XAML) package format as a flow document |
|
||
TIFF |
Renders a page or pages of the document and saves them into a single or multipage TIFF file |
|
||
PNG |
Renders a page of the document and saves it as a PNG file |
|
||
BMP |
Renders a page of the document and saves it as a BMP file |
|
||
EMF |
Renders a page of the document and saves it as a vector EMF (Enhanced Meta File) file |
|
||
JPEG |
Renders a page of the document and saves it as a JPEG file |
|
||
GIF |
Renders a page of the document and saves it as a GIF file |
|
||
| WebP | Google image compression format |
|
Q: Which file formats can Aspose.Words load?
A: Aspose.Words can load a wide range of Word processing formats, including DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, HTML, MHTML, ODT, OTT, TXT, MD, XML, and PDF. It also supports loading of some e‑book formats such as EPUB, MOBI, and AZW3. Formats marked with a tick under the Load column in the table are supported for loading.
Q: Which file formats can Aspose.Words save?
A: The library can save documents to most of the formats it can load, plus several additional output types. Supported save formats include DOC, DOCX, DOCM, DOTX, DOTM, RTF, HTML, MHTML, ODT, OTT, TXT, MD, PDF, EPUB, and various image formats (PNG, JPEG, GIF, BMP, EMF, TIFF, SVG). The Save column in the table indicates the formats that can be written.
Q: Can Aspose.Words convert a PDF document to HTML?
A: Yes. PDF is a supported input format, and HTML is a supported output format. Load the PDF with Document doc = new Document("input.pdf"); and then save it using doc.Save("output.html", SaveFormat.Html);. This conversion preserves the layout and text as closely as possible.
Q: Is it possible to export a document as an image such as PNG or JPEG?
A: Absolutely. Aspose.Words can render each page of a document to raster image formats. After loading the document, use doc.Save("page.png", SaveFormat.Png); or doc.Save("page.jpeg", SaveFormat.Jpeg);. You can also generate multi‑page TIFF files by specifying SaveFormat.Tiff.
Q: Does Aspose.Words support e‑book formats like EPUB, MOBI, and AZW3?
A: Yes. EPUB is fully supported for both loading and saving. MOBI and AZW3 can be loaded, and you can save to EPUB, which is the recommended e‑book output format for further distribution. Use the appropriate SaveFormat enumeration values when calling Document.Save.
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.