christopherdro / react-native-html-to-pdf

Convert html strings to PDF documents using React Native
MIT License
434 stars 264 forks source link

generate pdf on a single page #310

Closed thiagomachado1998 closed 3 months ago

thiagomachado1998 commented 5 months ago

i work generating very large documents and i would like to be able to generate all the content on a single page. how can i do this, generate all the content on a single page without breaking pages?

Mackewinsson-femsa commented 4 months ago

@thiagomachado1998 resolved this by setting document height dynamically based on the content for instance: const options = { html: '<h1>content</h1>', height: (calculate the height based on the content you add)}