IIptc
İçindekiler
[
Saklamak
]
IIptc interface
IPTC meta verileriyle çalışması amaçlanan temel işlemleri temsil eder. Lütfen daha fazla bilgiyi şu adreste bulabilirsiniz:http://en.wikipedia.org/wiki/International_Press_Telecommunications_Council .
public interface IIptc
Özellikleri
İsim | Tanım |
---|---|
IptcPackage { get; set; } | Dosyayla ilişkili IPTC meta veri paketini alır veya ayarlar. |
Notlar
Daha fazla bilgi edin
Örnekler
Bu örnek, temel IPTC meta veri özelliklerinin nasıl okunacağını gösterir.
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);
// ...
}
}
}
Ayrıca bakınız
- ad alanı GroupDocs.Metadata.Standards.Iptc
- toplantı GroupDocs.Metadata