Namespace Aspose.TeX.Plugins
Namespace Aspose.TeX.Plugins
Classes
Nombre de clase | Description |
---|---|
FigureRendererPlugin | Clase 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 | Las opciones para el Aspose.TeX.Plugins.FigureRendererPlugin. |
FigureRendererPluginResult | El resultado común del plugin de Figure Renderer. |
MathRendererPlugin | Clase de Plugin. // 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 | Las opciones para el Aspose.TeX.Plugins.MathRendererPlugin. |
MathRendererPluginResult | El resultado común del plugin Math Renderer. |
PngFigureRendererPluginOptions | Las opciones del plugin Figure Renderer para render una figura LaTeX en PNG. |
PngMathRendererPluginOptions | Las opciones del plugin Math Renderer para rendir una fórmula matemática en PNG. |
ResultContainer | El resultado de la ejecución del plugin es el contenedor. |
StreamDataSource | La fuente de datos de flujo para la carga del plugin y ahorrar las operaciones. |
StringDataSource | La fuente de datos de string para las operaciones de carga del plugin. |
SvgFigureRendererPluginOptions | Las opciones del plugin Figure Renderer para render una figura LaTeX en SVG. |
SvgMathRendererPluginOptions | Las opciones del plugin Math Renderer para rendir una fórmula matemática en SVG. |
Interfaces
Nombre de Interface | Description |
---|---|
IDataSource | Interfaz de fuente de datos general. |
IOperationResult | La operación general resultó de la interfaz. |
IPlugin | Interfaz de Plugin General. |
IPluginOptions | La interfaz de opciones de plugin general. |
Enums
Enum Nombre | Description |
---|---|
DataType | Enumera los tipos de datos disponibles para plugins I/O. |