Пример #1
0
 private void SetCheckerOutputIntent(PdfDictionary outputIntent)
 {
     if (outputIntent != null)
     {
         PdfStream destOutputProfile = outputIntent.GetAsStream(PdfName.DestOutputProfile);
         if (destOutputProfile != null)
         {
             String intentCS = IccProfile.GetIccColorSpaceName(destOutputProfile.GetBytes());
             this.pdfAOutputIntentColorSpace = intentCS;
         }
     }
 }