Class MathRendererPlugin
Class MathRendererPlugin
Le nom : Aspose.TeX.Plugins Assemblée: Aspose.TeX.dll (25.4.0)
Classificazione di Plugin.
// 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
I membri ereditari
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()
Dispone di questa instanza.
public void Dispose()
Process(Options IPlugin)
Esegue il trattamento Math Renderer con i parametri specificati.
public ResultContainer Process(IPluginOptions options)
Parameters
options
IPluginOptions
Un oggetto di opzioni che contiene istruzioni per MathRenderer.
Returns
Un oggetto ResultContainer che contiene il risultato dell’operazione.
Exceptions
Quando l’esempio delle opzioni è zero o ha un tipo inappropriato,o una delle fonti di input/output ha un tipo non supportato.