Namespace Aspose.TeX.Plugins
Namespace Aspose.TeX.Plugins
Classes
| Sınıf Adı | Description |
|---|---|
| FigureRendererPlugin | Şekil Renderer Plugin sınıfı. // 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 | Aspose.TeX.Plugins.FigureRendererPlugin için seçenekler. |
| FigureRendererPluginResult | Figure Renderer Plugin’in ortak sonucu. |
| MathRendererPlugin | Plugin Sınıfı. // 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 | Aspose.TeX.Plugins.MathRendererPlugin için seçenekler. |
| MathRendererPluginResult | Math Renderer Plugin’in ortak sonucu. |
| PngFigureRendererPluginOptions | Figure Renderer eklentisinin PNG’de bir LaTeX figürü sunma seçenekleri. |
| PngMathRendererPluginOptions | Math Renderer eklentisinin seçenekleri PNG’de bir matematik formülü sunmak için. |
| ResultContainer | Plugin uygulama sonucu konteyner. |
| StreamDataSource | Plugin yükleme ve kurtarma işlemleri için akış veri kaynağı. |
| StringDataSource | Plugin yükleme işlemleri için string veri kaynağı. |
| SvgFigureRendererPluginOptions | Figure Renderer eklentisinin seçenekleri, SVG’de bir LaTeX figürünü sunar. |
| SvgMathRendererPluginOptions | Math Renderer eklentisinin SVG’de bir matematik formülü sunma seçenekleri. |
Interfaces
| arayüz adı | Description |
|---|---|
| IDataSource | Genel veri kaynağı arayüzü. |
| IOperationResult | Genel operasyon sonuç arayüzü. |
| IPlugin | Genel Plugin arayüzü. |
| IPluginOptions | Genel plugin seçenekleri arayüzü. |
Enums
| Enum Adı | Description |
|---|---|
| DataType | I/O eklentileri için mevcut veri türleri listelenir. |