Namespace Aspose.TeX.Plugins
Namespace Aspose.TeX.Plugins
Classes
| Klasse Name | Description |
|---|---|
| FigureRendererPlugin | Die Figur Renderer Plugin Klasse. // 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 | Die Optionen für die Aspose.TeX.Plugins.FigureRendererPlugin. |
| FigureRendererPluginResult | Das gemeinsame Ergebnis des Figure Renderer Plugins. |
| MathRendererPlugin | MathRenderer Plugin Klasse. // 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 | Die Optionen für die Aspose.TeX.Plugins.MathRendererPlugin. |
| MathRendererPluginResult | Das gemeinsame Ergebnis des Math Renderer Plugins. |
| PngFigureRendererPluginOptions | Die Optionen des Figure Renderer Plugins, um eine LaTeX-Figur in PNG zu machen. |
| PngMathRendererPluginOptions | Die Optionen des Math Renderer Plugins, um eine mathematische Formel in PNG zu machen. |
| ResultContainer | Die Plugin-Exektion führt zu einem Container. |
| StreamDataSource | Die Stream-Datenquelle für die Plugin-Ladung und Speicherung von Operationen. |
| StringDataSource | Die String-Datenquelle für Plugins Load-Operationen. |
| SvgFigureRendererPluginOptions | Die Optionen des Figure Renderer Plugins, um eine LaTeX-Figur in SVG zu machen. |
| SvgMathRendererPluginOptions | Die Optionen des Math Renderer Plugins, um eine mathematische Formel in SVG zu machen. |
Interfaces
| Interface Name | Description |
|---|---|
| IDataSource | Die allgemeine Datenquelle-Interface. |
| IOperationResult | Die allgemeine Operation führt zu Interface. |
| IPlugin | Die allgemeine Plugin-Interface. |
| IPluginOptions | Die allgemeine Plugin-Optionen-Interface. |
Enums
| Enum Name | Description |
|---|---|
| DataType | Liste verfügbare Datentypen für Plugins I/O. |