~ubuntu-branches/ubuntu/precise/exiv2/precise

« back to all changes in this revision

Viewing changes to doc/templates/getting-started.html.in

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Mercatante
  • Date: 2006-12-07 18:40:10 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20061207184010-0ouu8v0dr8nznob9
Tags: 0.12-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 
24
24
(don't let the components diagram below mislead you). Exiv2::Image
25
25
defines the interface to access various image metadata. Derived from
26
 
Exiv2::Image are the implementations of different image formats.
27
 
However, the only image format currently supported is Jpeg. Most
 
26
Exiv2::Image are the implementations of different image formats. Most
28
27
applications will use
29
28
<a class="el" href="classExiv2_1_1ImageFactory.html">Exiv2::ImageFactory</a> 
30
29
to access images in files or memory, in which case the image format 
34
33
<a class="el" href="classExiv2_1_1ExifData.html">Exiv2::ExifData</a> 
35
34
and <a class="el" href="classExiv2_1_1IptcData.html">Exiv2::IptcData</a>
36
35
of the Exiv2 library. They hold a container
37
 
of Exif and Iptc metadata, respectively, and define related methods to
 
36
of Exif and IPTC metadata, respectively, and define related methods to
38
37
access and manipulate the metadata. The containers hold objects derived from
39
38
<a class="el" href="classExiv2_1_1Metadatum.html">Exiv2::Metadatum</a>. 
40
39
Interface class Exiv2::Metadatum defines methods to access the
41
 
information of one Exif tag or Iptc dataset. It models the tag data as
 
40
information of one Exif tag or IPTC dataset. It models the tag data as
42
41
a key and value pair. 
43
42
The abstract base class 
44
43
<a class="el" href="classExiv2_1_1Key.html">Exiv2::Key</a> defines the 
45
 
interface for a key. Concrete keys implement Exif and Iptc keys.
 
44
interface for a key. Concrete keys implement Exif and IPTC keys.
46
45
The abstract base class 
47
46
<a class="el" href="classExiv2_1_1Value.html">Exiv2::Value</a> defines 
48
47
the interface to access tag information, from which concrete values are
49
48
derived. The actual value used in a metadatum depends on the type of
50
 
the Exif tag or Iptc dataset. It is usually determined when the Exif metadata 
 
49
the Exif tag or IPTC dataset. It is usually determined when the Exif metadata 
51
50
is read from an image. It is also possible to manually create a Value and
52
51
together with a key add it to an ExifData or IptcData container.</p>
53
52
 
57
56
functionality: <a href="exifprint_8cpp-example.html">Exifprint</a> 
58
57
shows how the Exif data of an image can be read and written to the screen.
59
58
<a href="iptcprint_8cpp-example.html">Iptcprint</a> is a similar 
60
 
example to print Iptc data.
 
59
example to print IPTC data.
61
60
<a href="addmoddel_8cpp-example.html">Addmoddel</a> shows how to
62
61
add, modify and delete Exif metadata. 
63
62
<a href="exifcomment_8cpp-example.html">Exifcomment</a> shows how to