Java com.itextpdf.kernel.pdf PdfWriter fields, constructors, methods, implement or subclass

Example usage for Java com.itextpdf.kernel.pdf PdfWriter fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.itextpdf.kernel.pdf PdfWriter.

The text is from its open source code.

Constructor

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.

Method

voidclose()
Close the writer and underlying streams.