I have to create a pdf file for a bill which can be very long, and I do not want any page break in side my printed bill.
I create a document using iText v5.5.5 library in java:
Document document = new Document(PageSize.LETTER, 3f, 3f, 0f, 0f);
So how can I create a document which has pagesize is very long which can contain full bill?
Or no space between pages is also fine for me, eventhough, I set marginTop | Bottom = 0, but not help.