Namespace Aspose.TeX.Plugins

Namespace Aspose.TeX.Plugins

Classes

Nome di classeDescription
FigureRendererPluginLa classe del plugin Renderer. L’esempio mostra come rendere un fragmento LaTeX in PNG. // 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); }
FigureRendererPluginOptionsLe opzioni per Aspose.TeX.Plugins.FigureRendererPlugin.
FigureRendererPluginResultIl risultato comune del plugin Figure Renderer.
MathRendererPluginClassificazione di Plugin. L’esempio mostra come rendere una formula LaTeX in PNG. // 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); }
MathRendererPluginOptionsLe opzioni per Aspose.TeX.Plugins.MathRendererPlugin.
MathRendererPluginResultIl risultato comune del plugin Math Renderer.
PngFigureRendererPluginOptionsLe opzioni del plugin Figure Renderer per rendere una figura LaTeX in PNG.
PngMathRendererPluginOptionsLe opzioni del plugin Math Renderer per rendere una formula matematica in PNG.
ResultContainerL’esecuzione del plugin è il contenitore.
StreamDataSourceLa fonte di dati di flusso per il carico del plugin e le operazioni di salvataggio.
StringDataSourceLa fonte di dati di string per le operazioni di carico del plugin.
SvgFigureRendererPluginOptionsLe opzioni del plugin Figure Renderer per rendere una figura LaTeX in SVG.
SvgMathRendererPluginOptionsLe opzioni del plugin Math Renderer per rendere una formula matematica in SVG.

Interfaces

Nome di interfacciaDescription
IDataSourceInterfaccia di fonte dati generale.
IOperationResultL’interfaccia di funzionamento generale si traduce in interfaccia.
IPluginL’interfaccia del plugin.
IPluginOptionsL’interfaccia delle opzioni di plugin.

Enums

Il nome EnumDescription
DataTypeElenco dei tipi di dati disponibili per i plugin I/O.
 Italiano