cesarvr / pdf-generator

Cordova plugin to generate pdf in the client-side
MIT License
107 stars 61 forks source link

Question: possible to export the cordova webview to pdf ? #94

Open Aarbel opened 5 years ago

Aarbel commented 5 years ago

Hi @cesarvr,

Do you think there's a way to export as pdf the webview of the cordova app with this plugin ?

Thanks for your help

cesarvr commented 5 years ago

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 same after a reload-render it should work.

Aarbel commented 5 years ago

Interesting, i'll work on it this week and keep you in touch.

Is that also possible to simulate print media queries ?