Namespace Aspose.TeX.Plugins
Namespace Aspose.TeX.Plugins
Classes
| ชื่อชั้นเรียน | Description |
|---|---|
| FigureRendererPlugin | รูปแบบ 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 | ตัวเลือกสําหรับ Aspose.TeX.Plugins.FigureRendererPlugin |
| FigureRendererPluginResult | ผลทั่วไปของปลั๊กอินรูป Renderer |
| MathRendererPlugin | MathRenderer คลาสปลั๊กอิน // 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 |
| MathRendererPluginResult | ผลทั่วไปของ Plugin Math Renderer |
| PngFigureRendererPluginOptions | ตัวเลือกของปลั๊กอินตัวเลข Renderer เพื่อให้ตัวเลข LaTeX ใน PNG |
| PngMathRendererPluginOptions | ตัวเลือกของปลั๊กอิน Math Renderer เพื่อให้สูตร math ใน PNG |
| ResultContainer | ปลั๊กอินการดําเนินการผลของภาชนะ |
| StreamDataSource | แหล่งข้อมูล stream สําหรับการโหลดและบันทึกการดําเนินงานของปลั๊กอิน |
| StringDataSource | แหล่งข้อมูล string สําหรับการดําเนินการโหลดของปลั๊กอิน |
| SvgFigureRendererPluginOptions | ตัวเลือกของปลั๊กอินตัวเลข Renderer เพื่อให้ตัวเลข LaTeX ใน SVG |
| SvgMathRendererPluginOptions | ตัวเลือกของปลั๊กอิน Math Renderer เพื่อให้สูตร math ใน SVG |
Interfaces
| ชื่ออินเตอร์เฟซ | Description |
|---|---|
| IDataSource | อินเตอร์เฟซแหล่งข้อมูลทั่วไป |
| IOperationResult | การดําเนินงานโดยรวมผลให้อินเตอร์เฟซ |
| IPlugin | อินเตอร์เฟซปลั๊กอินทั่วไป |
| IPluginOptions | อินเตอร์เฟซ опции โพสต์ทั่วไป |
Enums
| ชื่อ Enum | Description |
|---|---|
| DataType | รายการประเภทข้อมูลที่มีอยู่สําหรับปลั๊กอิน I/O |