IIptc
Contents
[
Hide
]
IIptc interface
Represents base operations intended to work with IPTC metadata. Please find more information at http://en.wikipedia.org/wiki/International_Press_Telecommunications_Council.
public interface IIptc
Properties
Name | Description |
---|---|
IptcPackage { get; set; } | Gets or sets the IPTC metadata package associated with the file. |
Remarks
Learn more
Examples
This example shows how to read basic IPTC metadata properties.
using (Metadata metadata = new Metadata(Constants.JpegWithIptc))
{
IIptc root = metadata.GetRootPackage() as IIptc;
if (root != null && root.IptcPackage != null)
{
if (root.IptcPackage.EnvelopeRecord != null)
{
Console.WriteLine(root.IptcPackage.EnvelopeRecord.DateSent);
Console.WriteLine(root.IptcPackage.EnvelopeRecord.Destination);
Console.WriteLine(root.IptcPackage.EnvelopeRecord.FileFormat);
Console.WriteLine(root.IptcPackage.EnvelopeRecord.FileFormatVersion);
// ...
}
if (root.IptcPackage.ApplicationRecord != null)
{
Console.WriteLine(root.IptcPackage.ApplicationRecord.Headline);
Console.WriteLine(root.IptcPackage.ApplicationRecord.ByLine);
Console.WriteLine(root.IptcPackage.ApplicationRecord.ByLineTitle);
Console.WriteLine(root.IptcPackage.ApplicationRecord.CaptionAbstract);
Console.WriteLine(root.IptcPackage.ApplicationRecord.City);
Console.WriteLine(root.IptcPackage.ApplicationRecord.DateCreated);
Console.WriteLine(root.IptcPackage.ApplicationRecord.ReleaseDate);
// ...
}
}
}
See Also
- namespace GroupDocs.Metadata.Standards.Iptc
- assembly GroupDocs.Metadata