iTextSharp.text.pdf.PdfWriter.SetOutputIntents C# (CSharp) Méthode

SetOutputIntents() public méthode

public SetOutputIntents ( String outputConditionIdentifier, String outputCondition, String registryName, String info, byte destOutputProfile ) : void
outputConditionIdentifier String
outputCondition String
registryName String
info String
destOutputProfile byte
Résultat void
        public virtual void SetOutputIntents(String outputConditionIdentifier, String outputCondition, String registryName, String info, byte[] destOutputProfile)
        {
            ICC_Profile colorProfile = (destOutputProfile == null) ? null : ICC_Profile.GetInstance(destOutputProfile);
            SetOutputIntents(outputConditionIdentifier, outputCondition, registryName, info, colorProfile);
        }

Same methods

PdfWriter::SetOutputIntents ( PdfReader reader, bool checkExistence ) : bool
PdfWriter::SetOutputIntents ( String outputConditionIdentifier, String outputCondition, String registryName, String info, ICC_Profile colorProfile ) : void