Insomniocode
Insomniocode
Hi @ttrout55! Thanks for sharing this new feature, it will be taken for next versions.
Thanks for using pdfmake-wrapper! The message is not clear, but I'll validate it. If you find any solution, please share it and close this issue.
Hi @alexladeira! What's the angular version you are using? can you give me more details about how you are using pdfmake-wrapper?
Have you added the fonts to use? `PdfMakeWrapper.setFonts(pdfFonts)` You can check how to create your first PDF [here](https://pdfmakewrapper.org/docs/getting-started/first-pdf-document).
any definition (Txt, Ol, etc..) has a method to break a page and orientation. For example: ```typescript pdf.add(printOverview); pdf.add( new Txt('some text').pageOrientation('portrait').pageBreak('before').end ); pdf.add( new Txt('some text 2').pageOrientation('landscape').pageBreak('before').end ); ```...