Example #1
0
 /**
  * Creates a new instance.
  * @param os the output stream
  * @param pdfVersion the pdf version the output will have
  * @throws DocumentException on error
  * @throws IOException on error
  */
 public PdfCopyFields(Stream os, char pdfVersion)
 {
     fc = new PdfCopyFieldsImp(os, pdfVersion);
 }
Example #2
0
 /**
  * Creates a new instance.
  * @param os the output stream
  * @throws DocumentException on error
  * @throws IOException on error
  */
 public PdfCopyFields(Stream os)
 {
     fc = new PdfCopyFieldsImp(os);
 }