Namespace Aspose.TeX.Plugins

Namespace Aspose.TeX.Plugins

Classes

Nom de classeDescription
FigureRendererPluginClassificació de Plugin Renderer. L’exemple mostra com fer un fragment LaTeX en PNG. // 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); }
FigureRendererPluginOptionsLes opcions per a Aspose.TeX.Plugins.FigureRendererPlugin.
FigureRendererPluginResultEl resultat comú del plugin Figure Renderer.
MathRendererPluginClassificació de plugins. L’exemple mostra com fer una fórmula LaTeX en PNG. // 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); }
MathRendererPluginOptionsLes opcions per a Aspose.TeX.Plugins.MathRendererPlugin.
MathRendererPluginResultEl resultat comú del plugin Math Renderer.
PngFigureRendererPluginOptionsLes opcions del plugin Figure Renderer per rendir una figura LaTeX en PNG.
PngMathRendererPluginOptionsLes opcions del plugin Math Renderer per fer una fórmula matemàtica en PNG.
ResultContainerL’execució del plugin és el resultat del contenidor.
StreamDataSourceLa font de dades de flux per a la càrrega del plugin i les operacions d’emmagatzematge.
StringDataSourceLa font de dades d’enllaç per a les operacions de càrrega del plugin.
SvgFigureRendererPluginOptionsLes opcions del plugin Figure Renderer per rendir una figura LaTeX en SVG.
SvgMathRendererPluginOptionsLes opcions del plugin Math Renderer per fer una fórmula matemàtica en SVG.

Interfaces

Nom de la interfícieDescription
IDataSourceInterfície de font de dades general.
IOperationResultL’operació general resulta interfície.
IPluginInterfície de plug-in general.
IPluginOptionsLa interfície general de les opcions de plug-in.

Enums

El nom EnumDescription
DataTypeEnumera els tipus de dades disponibles per a plugins I/O.
 Català