Create a PDF-backed document, writing the results into a WStream. PDF pages are sized when they are created, via beginPage(). @param stream Where the PDF is written @return PDF Document
(WStream stream)
| 19 | * @return PDF Document |
| 20 | */ |
| 21 | public static Document makePDF(WStream stream) { |
| 22 | return makePDF(stream, null, null, null, null, null, null, 0, 0); |
| 23 | } |
| 24 | |
| 25 | /** |
| 26 | * <p>Create a PDF-backed document, writing the results into a WStream.</p> |