Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
A DOCX format is popular because of the variety of options it offers users to write any type of documents. This file format is one of the most widely used and is available through numerous programs. With Aspose.HTML for .NET, you can convert SVG to DOCX format programmatically. In this article, you find information on how to convert SVG to DOCX by using ConvertSVG() methods of the Converter class and how to apply DocSaveOptions. Also, you can try an Online SVG Converter to test the Aspose.HTML for .NET API functionality and convert SVG on the fly.
You can convert SVG to other formats with Aspose.HTML API in real time. Please load SVG from the local file system, select the output format and run the example. The save options are set by default. You will immediately receive the conversion result as a separate file.
If you want to convert SVG to DOCX file programmatically, please see the following C# code examples.
The static methods of the Converter class are primarily used as the easiest way to convert an SVG file into various formats. You can convert SVG to DOCX in your C# application literally with a single line of code!
In the following example, we take an SVG file in a local file system ( shapes.svg), convert and save it in the local file system.
1// Convert SVG to DOCX using C#
2
3// Invoke the ConvertSVG() method to convert SVG to DOCX
4Converter.ConvertSVG(Path.Combine(DataDir, "shapes.svg"), new DocSaveOptions(), Path.Combine(OutputDir, "convert-with-single-line.docx"));Converting a file to another format using the ConvertSVG() method is a sequence of operations among which document loading and saving. In the following example, we create an SVG file from code.
content, baseUri, options, outputPath) method of the Converter class to save SVG as a DOCX file.Please take a look over the following C# code snippet which shows the process of converting SVG to DOCX using Aspose.HTML for .NET.
1// Convert SVG to DOCX in C#
2
3// Prepare SVG code
4string code = "<svg xmlns='http://www.w3.org/2000/svg'>" +
5 "<circle cx ='100' cy ='100' r ='50' fill='none' stroke='red' stroke-width='10' />" +
6 "</svg>";
7
8// Prepare a path for converted file saving
9string savePath = Path.Combine(OutputDir, "circle.docx");
10
11// Initialize DocSaveOptions
12DocSaveOptions options = new DocSaveOptions();
13
14// Convert SVG to DOCX
15Converter.ConvertSVG(code, ".", options, savePath);You can download the complete examples and data files from GitHub.
To convert SVG to DOCX with DocSaveOptions specifying, you should follow a few steps:
The following C# code snippet shows how to convert SVG to DOCX using custom save options:
1// Convert SVG to DOCX in C# with custom page settings
2
3// Prepare a path to a source SVG file
4string documentPath = Path.Combine(DataDir, "shapes.svg");
5
6// Prepare a path for converted file saving
7string savePath = Path.Combine(OutputDir, "shapes-options.docx");
8
9// Initialize an SVG document from the file
10using SVGDocument document = new SVGDocument(documentPath);
11
12// Initialize DocSaveOptions. Set up the page-size and margins
13DocSaveOptions options = new DocSaveOptions();
14options.PageSetup.AnyPage = new Page(new Aspose.Html.Drawing.Size(500, 500), new Margin(30, 10, 10, 10));
15
16// Convert SVG to DOCX
17Converter.ConvertSVG(document, options, savePath);The
DocSaveOptions() constructor initializes an instance of the DocSaveOptions class that is passed to ConvertSVG() method. The ConvertSVG() method takes the document, options, output file path savePath and performs the conversion operation. In the example, we use the PageSetup property that specifies the page size of the DOCX document. To learn more about
DocSaveOptions, please read the
Fine-Tuning Converters article.
Check the quality of SVG conversion with our online SVG Converter. Upload, convert your files and get results in a few seconds. Try our forceful SVG Converter for free now!
You can download the complete examples and data files from GitHub.
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.