Namespace Aspose.TeX.Plugins
Namespace Aspose.TeX.Plugins
Classes
| Název třídy | Description |
|---|---|
| FigureRendererPlugin | Třída 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 | Možnosti pro Aspose.TeX.Plugins.FigureRendererPlugin. |
| FigureRendererPluginResult | Obvyklý výsledek pluginu Figure Renderer. |
| MathRendererPlugin | Plugin třídy MathRenderer. // 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 | Možnosti pro Aspose.TeX.Plugins.MathRendererPlugin. |
| MathRendererPluginResult | Společný výsledek pluginu Math Renderer. |
| PngFigureRendererPluginOptions | Možnosti pluginu Figure Renderer zobrazit LaTeX číslo v PNG. |
| PngMathRendererPluginOptions | Možnosti pluginu Math Renderer, aby se matematická vzorec v PNG. |
| ResultContainer | Plugin provádí výsledek kontejner. |
| StreamDataSource | Stream datový zdroj pro pluginu nabití a ukládání operac. |
| StringDataSource | Zdroje dat řetězce pro provoz pluginu. |
| SvgFigureRendererPluginOptions | Možnosti pluginu Figure Renderer, aby se LaTeX postava ve SVG. |
| SvgMathRendererPluginOptions | Možnosti pluginu Math Renderer, aby se matematická vzorec ve SVG. |
Interfaces
| Název rozhraní | Description |
|---|---|
| IDataSource | Obecný zdrojový rozhraní dat. |
| IOperationResult | Obecná operační výsledek je rozhran. |
| IPlugin | Obecný plugin rozhran. |
| IPluginOptions | Rozhraní všeobecných možností pluginu. |
Enums
| Enum jméno | Description |
|---|---|
| DataType | Seznam dostupných typů dat pro pluginy I/O. |