Namespace Aspose.TeX.Plugins
Namespace Aspose.TeX.Plugins
Classes
Tên lớp | Description |
---|---|
FigureRendererPlugin | Hình Renderer plugin lớp. // 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 | Các tùy chọn cho Aspose.TeX.Plugins.FigureRendererPlugin. |
FigureRendererPluginResult | Kết quả phổ biến của plugin Figure Renderer. |
MathRendererPlugin | MathRenderer plugin lớp. // 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 | Các tùy chọn cho Aspose.TeX.Plugins.MathRendererPlugin. |
MathRendererPluginResult | Kết quả phổ biến của plugin Math Renderer. |
PngFigureRendererPluginOptions | Các tùy chọn của plugin Figure Renderer để thực hiện một con số LaTeX trong PNG. |
PngMathRendererPluginOptions | Các tùy chọn của plugin Math Renderer để thực hiện một công thức toán học trong PNG. |
ResultContainer | Plugin thực hiện kết quả container. |
StreamDataSource | Nguồn dữ liệu dòng cho tải plugin và lưu các hoạt động. |
StringDataSource | Nguồn dữ liệu string cho các hoạt động tải plugin. |
SvgFigureRendererPluginOptions | Các tùy chọn của plugin Figure Renderer để thực hiện một con số LaTeX trong SVG. |
SvgMathRendererPluginOptions | Các tùy chọn của plugin Math Renderer để thực hiện một công thức toán học trong SVG. |
Interfaces
Interface tên | Description |
---|---|
IDataSource | Giao diện nguồn dữ liệu chung. |
IOperationResult | Tổng hoạt động kết quả giao diện. |
IPlugin | Giao diện tổng thể plugin. |
IPluginOptions | Giao diện các tùy chọn plugin. |
Enums
Enum Tên | Description |
---|---|
DataType | Danh sách các loại dữ liệu có sẵn cho plugins I/O. |