I was wondering if somebody succeeded in transforming from MathML expressions into images in GAE.
GAE imposes many limitations on the classes allowed (bye bye FOP/ JEUclid) and I cannot do the logic in the front-end (mathjax) since the target is to print a pdf.
So far I contemplate either changing PaaS or switching to managed vm in GAE but it seems rather overkill.
Thanks
I have such experience, with processing math formulas and generating a PDF. It took a time, but I managed to do that on Appengine. I tried most of know libraries, including FOP, none of them works on gae, of course.
What I'm using:
<img>
tag that points to a dummy protocolmath://
, then I have a customImageProvider
that renders formula by using MathTex for such urlsLittle bit hacky, and requires a cheap external server, but that works