Namespace Aspose.TeX.Plugins
Namespace Aspose.TeX.Plugins
Classes
Nome di classe | Description |
---|---|
FigureRendererPlugin | La classe del 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 | Le opzioni per Aspose.TeX.Plugins.FigureRendererPlugin. |
FigureRendererPluginResult | Il risultato comune del plugin Figure Renderer. |
MathRendererPlugin | Classificazione di 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 | Le opzioni per Aspose.TeX.Plugins.MathRendererPlugin. |
MathRendererPluginResult | Il risultato comune del plugin Math Renderer. |
PngFigureRendererPluginOptions | Le opzioni del plugin Figure Renderer per rendere una figura LaTeX in PNG. |
PngMathRendererPluginOptions | Le opzioni del plugin Math Renderer per rendere una formula matematica in PNG. |
ResultContainer | L’esecuzione del plugin è il contenitore. |
StreamDataSource | La fonte di dati di flusso per il carico del plugin e le operazioni di salvataggio. |
StringDataSource | La fonte di dati di string per le operazioni di carico del plugin. |
SvgFigureRendererPluginOptions | Le opzioni del plugin Figure Renderer per rendere una figura LaTeX in SVG. |
SvgMathRendererPluginOptions | Le opzioni del plugin Math Renderer per rendere una formula matematica in SVG. |
Interfaces
Nome di interfaccia | Description |
---|---|
IDataSource | Interfaccia di fonte dati generale. |
IOperationResult | L’interfaccia di funzionamento generale si traduce in interfaccia. |
IPlugin | L’interfaccia del plugin. |
IPluginOptions | L’interfaccia delle opzioni di plugin. |
Enums
Il nome Enum | Description |
---|---|
DataType | Elenco dei tipi di dati disponibili per i plugin I/O. |