Namespace Aspose.TeX.Plugins
Namespace Aspose.TeX.Plugins
Classes
클래스 이름 | Description |
---|---|
FigureRendererPlugin | 그림 렌더 플러그인 클래스. // 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 | Figure 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 | Math Renderer 플러그인의 일반적인 결과. |
PngFigureRendererPluginOptions | Figure Renderer 플러그인의 옵션은 PNG에서 LaTeX 숫자를 만들 수 있습니다. |
PngMathRendererPluginOptions | Math Renderer 플러그인의 옵션은 PNG에서 수학 공식을 제공합니다. |
ResultContainer | 플러그인 실행 결과 컨테이너. |
StreamDataSource | 플러그인의 로드 및 저장 작업을위한 스트림 데이터 원본. |
StringDataSource | 플러그인의 로드 작업을위한 스트리트 데이터 원본. |
SvgFigureRendererPluginOptions | Figure Renderer 플러그인의 옵션은 SVG에서 LaTeX 숫자를 제공합니다. |
SvgMathRendererPluginOptions | Math Renderer 플러그인의 옵션은 SVG에서 수학 공식을 제공합니다. |
Interfaces
인터페이스 이름 | Description |
---|---|
IDataSource | 일반 데이터 원본 인터페이스. |
IOperationResult | 일반적인 작동 결과 인터페이스. |
IPlugin | 일반 플러그인 인터페이스 |
IPluginOptions | 일반 플러그인 옵션 인터페이스. |
Enums
Enum 이름 | Description |
---|---|
DataType | I/O 플러그인에 대한 사용 가능한 데이터 유형을 나열합니다. |