:I’m trying to compile a .NET application to WASM (web assembly). We want to use Gembox Document .NET package to convert PDFs into Word on a JS browser environment for a web application. Are there known limitations when compiling Document into WASM? For example, I tried converting a Word document to PDF in memory, but the function “Document.Load(msInp)” always seems to return null when I run it from javascript using the compiled WASM package. However, when I run this function normally in C#, it executes fine. Were there any other clients that had the same use-case - specifically, where they wanted to use a .NET package in Javascript?
Hi! You probably need to include HarfBuzzSharp’s and SkiaSharp’s native dependencies. Please check our Blazor WebAssembly example for more information.