Namespace Aspose.TeX.Plugins

Namespace Aspose.TeX.Plugins

Classes

Sınıf AdıDescription
FigureRendererPluginŞekil Renderer Plugin sınıfı. Örnek, PNG’de bir LaTeX parçası nasıl yapılacağını gösterir. // 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); }
FigureRendererPluginOptionsAspose.TeX.Plugins.FigureRendererPlugin için seçenekler.
FigureRendererPluginResultFigure Renderer Plugin’in ortak sonucu.
MathRendererPluginPlugin Sınıfı. Örnek, PNG’de bir LaTeX formülü nasıl yapılacağını gösterir. // 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); }
MathRendererPluginOptionsAspose.TeX.Plugins.MathRendererPlugin için seçenekler.
MathRendererPluginResultMath Renderer Plugin’in ortak sonucu.
PngFigureRendererPluginOptionsFigure Renderer eklentisinin PNG’de bir LaTeX figürü sunma seçenekleri.
PngMathRendererPluginOptionsMath Renderer eklentisinin seçenekleri PNG’de bir matematik formülü sunmak için.
ResultContainerPlugin uygulama sonucu konteyner.
StreamDataSourcePlugin yükleme ve kurtarma işlemleri için akış veri kaynağı.
StringDataSourcePlugin yükleme işlemleri için string veri kaynağı.
SvgFigureRendererPluginOptionsFigure Renderer eklentisinin seçenekleri, SVG’de bir LaTeX figürünü sunar.
SvgMathRendererPluginOptionsMath Renderer eklentisinin SVG’de bir matematik formülü sunma seçenekleri.

Interfaces

arayüz adıDescription
IDataSourceGenel veri kaynağı arayüzü.
IOperationResultGenel operasyon sonuç arayüzü.
IPluginGenel Plugin arayüzü.
IPluginOptionsGenel plugin seçenekleri arayüzü.

Enums

Enum AdıDescription
DataTypeI/O eklentileri için mevcut veri türleri listelenir.
 Türkçe