Type Default Value Read Only Static Description
IptcItem None Yes No An IPTC entry from the current graphic.
Notes

The Item property allows you to access IPTC items referenced by index.

For details of the way in which IPTC items can be referred to see the Add method. Only the first matching item is returned.

See Also

Add

Count

Value

Example

[C#]

Metadata metadata = new Metadata(Server.MapPath("rez/iptc2.jpg"));
Response.Write(metadata.Iptc["Headline"].Text);
Response.Write("<br>");
Response.Write(metadata.Iptc["Caption"].Text);
Response.Write("<br>");


This example writes the Headline and Caption from a TIFF file. An error will be raised if the IPTC data does not contain a headline and caption.