Cesar Valdez
Cesar Valdez
Hi I wrote this [example project](https://github.com/cesarvr/pdf-generator-example), where you can find how to load assets from internal memory. Hope it helps.
Can you put a code snippet ? , but I suspect that if you pass the page to the plugin they won't share the same browser so the local storage...
The plugin basically will render your HTML in an internal browser, if your table grow downward the internal browser will take care of the pagination automatically. Try drawing that ``$('#myPdf').html()``...
What happen in your case is that you are trying to transform just one page (of your pagination) to a PDF, you should build your PDF with a collection of...
If you mean the current state of the app (screenshot like) you can try doing: ``js let content = document.getElementsByTagName('HTML')[0].innerHTML pdf.fromHTML(content, {type: 'base64'}).then(..).catch(..) `` If your app state, stay the...
Hi @lukawal-miller , can you please attach logs ? In this [example](https://github.com/cesarvr/pdf-generator-example) there is a case similar to yours where I attach multiple pages maybe can be of help.
Look what I did: I get my sample project and execute it using: ```sh open platforms/iOS/Testing.xcworkspace ``` Once there I run the simulator and hook Safari (I'm using a Mac),...
= Is this crash happening when the promise returns ? = or the promise never returns and the process just die ? = Also is this Android or iOS ?
You can achieve something similar by controlling the[ viewport on the HTML](https://www.w3schools.com/css/css_rwd_viewport.asp) you want to transform.
Sorry for the late response, I think the size depends on the kind of assets in the form of images your are embedding in the PDF. If those pages contain...