Namespace Aspose.TeX.Plugins
Namespace Aspose.TeX.Plugins
Classes
| Nom de classe | Description |
|---|---|
| FigureRendererPlugin | C’est le plugin de la classe 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 | Le résultat commun du plugin Figure Renderer. |
| MathRendererPlugin | MathRenderer Plugin classe. // 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 | Le résultat commun du plugin Math Renderer. |
| PngFigureRendererPluginOptions | Les options du plugin Figure Renderer pour rendre une figure LaTeX en PNG. |
| PngMathRendererPluginOptions | Les options du plugin Math Renderer pour rendre une formule mathématique en PNG. |
| ResultContainer | L’esecuzione del plugin è il contenitore. |
| StreamDataSource | La source de données de streaming pour le chargement et le sauvetage des opérations du plugin. |
| StringDataSource | La source de données de string pour les opérations de chargement du plugin. |
| SvgFigureRendererPluginOptions | Les options du plugin Figure Renderer pour rendre une figure LaTeX dans SVG. |
| SvgMathRendererPluginOptions | Les options du plugin Math Renderer pour rendre une formule mathématique dans SVG. |
Interfaces
| Nom de l’interface | 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
| Un nom | Description |
|---|---|
| DataType | Elenco dei tipi di dati disponibili per i plugin I/O. |