Exemplo n.º 1
0
 public PdfConcatenator(Stream outStream, PdfEncryptInfo encryptInfo, int viewerPreference)
 {
     if (encryptInfo == null)
     {
         Setup(outStream, 0, null, null, 0, viewerPreference);
     }
     else
     {
         Setup(outStream, encryptInfo.encryptionLength, encryptInfo.userPassword, encryptInfo.ownerPassword, encryptInfo.permissions, viewerPreference);
     }
 }
Exemplo n.º 2
0
 public PdfConcatenator(Stream outStream, PdfEncryptInfo encryptInfo)
     : this(outStream, encryptInfo, 0)
 {
 }