Class MathRendererPlugin
Class MathRendererPlugin
Navne til: Aspose.TeX.Plugins Sammensætning: Aspose.TeX.dll (25.4.0)
MathRenderer plugin klasse.
// 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);
}
```</example>
```csharp
public class MathRendererPlugin : IPlugin, IDisposable
Inheritance
Implements
De arvede medlemmer
object.GetType() , object.MemberwiseClone() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()
Constructors
MathRendererPlugin()
public MathRendererPlugin()
Methods
Dispose()
Vi har denne instans.
public void Dispose()
Process(IPluginoptioner)
Runs Math Renderer behandling med de angivne parametre.
public ResultContainer Process(IPluginOptions options)
Parameters
options
IPluginOptions
Et alternativ objekt, der indeholder instruktioner for MathRenderer.
Returns
En ResultContainer-objekt, der indeholder resultatet af operationen.
Exceptions
Hvis det angivne alternativ er nul eller har en utilstrækkelig type,eller en af de input/output kilder har en ikke-støttet type.