Namespace Aspose.TeX.Plugins
Namespace Aspose.TeX.Plugins
Classes
Nazwa klasy | Description |
---|---|
FigureRendererPlugin | Klasy 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 | Opcje dla Aspose.TeX.Plugins.FigureRendererPlugin. |
FigureRendererPluginResult | Najczęstsze wyniki Plugin Figure Renderer. |
MathRendererPlugin | Klasa Plugin 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 | Opcje dla Aspose.TeX.Plugins.MathRendererPlugin. |
MathRendererPluginResult | Częste wyniki Plugin Math Renderer. |
PngFigureRendererPluginOptions | Opcje wtyczki Figure Renderer do renderowania figury LaTeX w PNG. |
PngMathRendererPluginOptions | Opcje wtyczki Math Renderer, aby przekazać formułę matematyczną w PNG. |
ResultContainer | Plugin wykonanie wynika z kontenera. |
StreamDataSource | Źródło danych strumieniowe dla ładowania i przechowywania operacji wtyczki. |
StringDataSource | Źródło danych łańcucha dla operacji ładowania wtyczki. |
SvgFigureRendererPluginOptions | Opcje wtyczki Figure Renderer do renderowania figury LaTeX w SVG. |
SvgMathRendererPluginOptions | Opcje wtyczki Math Renderer, aby przekazać formułę matematyczną w SVG. |
Interfaces
Nazwa interfejsu | Description |
---|---|
IDataSource | ogólny interfejs źródła danych. |
IOperationResult | Ogólna operacja wynika z interfejsu. |
IPlugin | Ogólny interfejs plugin. |
IPluginOptions | Ogólny interfejs opcji wtyczki. |
Enums
Imię Enum | Description |
---|---|
DataType | Wykaz dostępnych typów danych dla wtyczek I/O. |