react-pdf icon indicating copy to clipboard operation
react-pdf copied to clipboard

Long single page + A4 size

Open jooyoni opened this issue 1 year ago • 1 comments

Hello, Thank you for developing such a great library. I have a question regarding this library. I have successfully implemented an A4-sized PDF using this library. However, I am a bit disappointed with the content being cut off due to page breaks. Therefore, I would like to create a PDF with the width of an A4 size but without any height limitation, effectively making it a single-page document. Is there a way to achieve this using this library?

jooyoni avatar Aug 16 '24 01:08 jooyoni

You can do that if you pass undefined as height to the page, instead of using A4.

<Page
   size={{ width: 595.28, height: undefined }}
   style={styles.page}
>

volskaya avatar Aug 16 '24 07:08 volskaya

@volskaya @diegomura not working for me. when printing a long receipt it cuts off

shahabgohar avatar Oct 08 '25 19:10 shahabgohar