I am using Maui and library CSharpMath.SkiaSharp and MathPainter from there too create latex formulas. I have an editor where the user enters latex. Using MathPainter, I draw the latex formula as a stream and show it to the user in real time with a picture, the source of this picture changes as soon as the formula changes. It looks something like this:
MathPainter mathPainter = new() {FontSize = 25};
private void EditorTextChanged(object sender, EventArgs e)
{
string formula = e.NewTextValue;
mathPainter.LaTeX = formula;
LatexImage.Source = ImageSource.FromStream(() => mathPainter.DrawAsStream())
}
Then, when the user is done and clicks the button, I get the picture again as a stream and save it in the place I need. Sometimes it works as expected, but most of the time I just get the "Canvas trying to draw too large bitmap" exception and the application crashes. How can I fix this problem?
Ok, here we go:
This is the source code of DrawAsStream:
This line here:
Returns the same result over and over. (This textPainterCanvasWidth says "UNUSED")
So, what do we do? We copy this method and write our own:
And override the Width and Height to 300 in it.
In the XAML we have:
And in the code:
It works on my side, more or less.