Namespace Aspose.TeX.Plugins
Namespace Aspose.TeX.Plugins
Classes
Nom de classe | Description |
---|---|
FigureRendererPlugin | Classificació de Plugin Renderer. // Create the Figure Renderer. FigureRendererPlugin renderer = new FigureRendererPlugin(); // Create the PngFigureRendererPluginOptions instance and set up options. PngFigureRendererPluginOptions options = new PngFigureRendererPluginOptions() { BackgroundColor = Color.Yellow, Resolution = 150, Margin = 10, Preamble = "LaTeX preamble" }; // Add an input LaTeX fragment. options.AddInputDataSource(new StringDataSource("LaTeX fragment")); // Create a stream to write the image to. using (Stream stream = File.Open("output path", FileMode.Create)) { // Add an output stream. options.AddOutputDataTarget(new StreamDataSource(stream)); // Run the process. ResultContainer result = renderer.Process(options); } |
FigureRendererPluginOptions | Les opcions per a Aspose.TeX.Plugins.FigureRendererPlugin. |
FigureRendererPluginResult | El resultat comú del plugin Figure Renderer. |
MathRendererPlugin | Classificació de plugins. // Create MathRenderer. MathRendererPlugin renderer = new MathRendererPlugin(); // Create the PngMathRendererPluginOptions instance and set up options. PngMathRendererPluginOptions options = new PngMathRendererPluginOptions() { BackgroundColor = Color.Yellow, TextColor = Color.Blue, Resolution = 150, Margin = 10, Preamble = "LaTeX preamble" }; // Add a source formula. options.AddInputDataSource(new StringDataSource("LaTeX formula")); // Create a stream to write the image to. using (Stream stream = File.Open("output path", FileMode.Create)) { // Add an output stream. options.AddOutputDataTarget(new StreamDataSource(stream)); // Run the process. ResultContainer result = renderer.Process(options); } |
MathRendererPluginOptions | Les opcions per a Aspose.TeX.Plugins.MathRendererPlugin. |
MathRendererPluginResult | El resultat comú del plugin Math Renderer. |
PngFigureRendererPluginOptions | Les opcions del plugin Figure Renderer per rendir una figura LaTeX en PNG. |
PngMathRendererPluginOptions | Les opcions del plugin Math Renderer per fer una fórmula matemàtica en PNG. |
ResultContainer | L’execució del plugin és el resultat del contenidor. |
StreamDataSource | La font de dades de flux per a la càrrega del plugin i les operacions d’emmagatzematge. |
StringDataSource | La font de dades d’enllaç per a les operacions de càrrega del plugin. |
SvgFigureRendererPluginOptions | Les opcions del plugin Figure Renderer per rendir una figura LaTeX en SVG. |
SvgMathRendererPluginOptions | Les opcions del plugin Math Renderer per fer una fórmula matemàtica en SVG. |
Interfaces
Nom de la interfície | Description |
---|---|
IDataSource | Interfície de font de dades general. |
IOperationResult | L’operació general resulta interfície. |
IPlugin | Interfície de plug-in general. |
IPluginOptions | La interfície general de les opcions de plug-in. |
Enums
El nom Enum | Description |
---|---|
DataType | Enumera els tipus de dades disponibles per a plugins I/O. |