Example usage for Java com.itextpdf.kernel.pdf PdfWriter fields, constructors, methods, implement or subclass
The text is from its open source code.
PdfWriter(java.io.File file) Create a PdfWriter writing to the passed File and with default writer properties. | |
PdfWriter(java.io.OutputStream os) Create a PdfWriter writing to the passed outputstream and with default writer properties. | |
PdfWriter(String filename) Create a PdfWriter writing to the passed filename and with default writer properties. | |
PdfWriter(java.io.OutputStream os, WriterProperties properties) | |
PdfWriter(String filename, WriterProperties properties) Create a PdfWriter writing to the passed filename and using the passed writer properties. |
void | close() Close the writer and underlying streams. |