TeX to SVG
Convert TeX to SVG via API Solution for C++.
How to Convert TeX to SVG Using C++
Aspose.TeX for TeX to SVG converter transforms a TeX file to SVG using the C++ programming language.
The API presented here can be used to create your own cross-platform application or integrated into your C++ project.
In order to convert TeX to SVG:
- Use the Aspose.TeX for C++ API which is a feature-rich, powerful and easy-to-use document processing and conversion API for C++ platform.
- You can download its latest version directly. Just open NuGet package manager, search for Aspose.TeX.Cpp and install. You may also use the Package Manager Console.
Steps to Convert TeX to SVG Using C++
Aspose.TeX makes it easy for developers to transform TeX files to SVG in just a few lines of code.
- Instantiate the TeXOptions class.
- Specify the file system working directory for the output by calling the set_OutputWorkingDirectory() method.
- Initialize save options for the SVG format using the SvgSaveOptions class.
- Instantiate the TeXJob class with a newly created SvgDevice object and run the TeX to SVG conversion using the Run() method.
Get Started with the C++ TeX API
- Install from the command line typing
nuget install Aspose.TeX.Cpp
or via the Visual Studio Package Manager Console usingInstall-Package Aspose.TeX.Cpp
. - Alternatively, get the DLLs in a ZIP file from downloads .
// Create typesetting options for Object TeX format on Object TeX engine extension.
System::SharedPtr<TeXOptions> options = TeXOptions::ConsoleAppOptions(TeXConfig::ObjectTeX());
// Specify the file system working directory for the output.
options->set_OutputWorkingDirectory(System::MakeObject<OutputFileSystemDirectory>(RunExamples::OutputDirectory));
// Create and specify save options.
options->set_SaveOptions(System::MakeObject<SvgSaveOptions>());
// Run TeX to SVG conversion.
System::MakeObject<Aspose::TeX::TeXJob>(System::IO::Path::Combine(RunExamples::InputDirectory, u"hello-world.tex"),
System::MakeObject<SvgDevice>(), options)->Run();
TeX What is TeX File Format
TeX is not actually a format. It is both a programming language and also an interpreter engine that understands this language. A TeX file is a plain text file created using TeX syntax to be converted to some target format by being processed by a TeX engine. This output document may include graphics, tables, lists, formulas, and equations.
SVG What is SVG File Format
Scalable Vector Graphics (SVG) is a Page Description Language based on XML/ It is developed to create two-dimensional vector and mixed vector/raster graphics. SVG document is a text file that describes images as geometric primitives: lines, curves, shapes, text, etc. The file includes a set of commands, formulas, and numbers to define the vector objects.