We have a use case which when trying to render a very long single page PDF on WASM, it doesn't show an image. Here's an example:
https://github.com/reyjexter/pdfium-render-wasm/blob/master/www/index.html
When reducing the size or resolution of image being rendered, this renders correctly so it looks like a memory related issue. What's the best way for pdfium-render to increase the allocated memory?
The expected result is to render the whole page as an image but it instead render a blank image. On some tests that we made, it renders the top portion of the page and the remaining being cut off. There's also no error that appears on console.

Thanks again!