rdf 1.1.0p4 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. checksums.yaml +6 -14
  2. data/README +33 -33
  3. data/VERSION +1 -1
  4. data/lib/rdf.rb +60 -12
  5. data/lib/rdf/cli.rb +7 -1
  6. data/lib/rdf/cli/vocab-loader.rb +240 -0
  7. data/lib/rdf/format.rb +2 -2
  8. data/lib/rdf/mixin/enumerable.rb +12 -4
  9. data/lib/rdf/mixin/queryable.rb +13 -13
  10. data/lib/rdf/model/graph.rb +5 -4
  11. data/lib/rdf/model/list.rb +15 -4
  12. data/lib/rdf/model/literal.rb +2 -1
  13. data/lib/rdf/model/statement.rb +10 -1
  14. data/lib/rdf/model/term.rb +8 -0
  15. data/lib/rdf/model/uri.rb +107 -2
  16. data/lib/rdf/model/value.rb +8 -0
  17. data/lib/rdf/ntriples/reader.rb +5 -4
  18. data/lib/rdf/query.rb +47 -12
  19. data/lib/rdf/query/solutions.rb +29 -29
  20. data/lib/rdf/reader.rb +13 -3
  21. data/lib/rdf/repository.rb +1 -0
  22. data/lib/rdf/util/file.rb +86 -6
  23. data/lib/rdf/vocab.rb +158 -58
  24. data/lib/rdf/vocab/cc.rb +28 -11
  25. data/lib/rdf/vocab/cert.rb +127 -9
  26. data/lib/rdf/vocab/dc.rb +242 -60
  27. data/lib/rdf/vocab/dc11.rb +42 -20
  28. data/lib/rdf/vocab/doap.rb +121 -42
  29. data/lib/rdf/vocab/exif.rb +540 -165
  30. data/lib/rdf/vocab/foaf.rb +353 -66
  31. data/lib/rdf/vocab/geo.rb +40 -10
  32. data/lib/rdf/vocab/gr.rb +1094 -0
  33. data/lib/rdf/vocab/http.rb +81 -23
  34. data/lib/rdf/vocab/ical.rb +361 -0
  35. data/lib/rdf/vocab/ma.rb +281 -69
  36. data/lib/rdf/vocab/og.rb +98 -0
  37. data/lib/rdf/vocab/owl.rb +226 -56
  38. data/lib/rdf/vocab/prov.rb +489 -0
  39. data/lib/rdf/vocab/rdfs.rb +38 -14
  40. data/lib/rdf/vocab/rsa.rb +25 -9
  41. data/lib/rdf/vocab/rss.rb +29 -11
  42. data/lib/rdf/vocab/schema.rb +3729 -647
  43. data/lib/rdf/vocab/sioc.rb +224 -89
  44. data/lib/rdf/vocab/skos.rb +141 -33
  45. data/lib/rdf/vocab/skosxl.rb +43 -0
  46. data/lib/rdf/vocab/v.rb +154 -0
  47. data/lib/rdf/vocab/vcard.rb +337 -0
  48. data/lib/rdf/vocab/void.rb +142 -0
  49. data/lib/rdf/vocab/wdrs.rb +129 -0
  50. data/lib/rdf/vocab/wot.rb +52 -18
  51. data/lib/rdf/vocab/xhtml.rb +3 -6
  52. data/lib/rdf/vocab/xhv.rb +239 -0
  53. data/lib/rdf/writer.rb +3 -3
  54. metadata +81 -14
@@ -1,23 +1,45 @@
1
+ # This file generated automatically using vocab-fetch from http://purl.org/dc/elements/1.1/
2
+ require 'rdf'
1
3
  module RDF
2
- ##
3
- # Dublin Core (DC) legacy vocabulary.
4
- #
5
- # @see http://dublincore.org/schemas/rdfs/
6
- class DC11 < Vocabulary("http://purl.org/dc/elements/1.1/")
7
- property :contributor
8
- property :coverage
9
- property :creator
10
- property :date
11
- property :description
12
- property :format
13
- property :identifier
14
- property :language
15
- property :publisher
16
- property :relation
17
- property :rights
18
- property :source
19
- property :subject
20
- property :title
21
- property :type
4
+ class DC11 < StrictVocabulary("http://purl.org/dc/elements/1.1/")
5
+
6
+ # Property definitions
7
+ property :contributor, :label => 'Contributor', :comment =>
8
+ %(An entity responsible for making contributions to the
9
+ resource.)
10
+ property :coverage, :label => 'Coverage', :comment =>
11
+ %(The spatial or temporal topic of the resource, the spatial
12
+ applicability of the resource, or the jurisdiction under which
13
+ the resource is relevant.)
14
+ property :creator, :label => 'Creator', :comment =>
15
+ %(An entity primarily responsible for making the resource.)
16
+ property :date, :label => 'Date', :comment =>
17
+ %(A point or period of time associated with an event in the
18
+ lifecycle of the resource.)
19
+ property :description, :label => 'Description', :comment =>
20
+ %(An account of the resource.)
21
+ property :format, :label => 'Format', :comment =>
22
+ %(The file format, physical medium, or dimensions of the
23
+ resource.)
24
+ property :identifier, :label => 'Identifier', :comment =>
25
+ %(An unambiguous reference to the resource within a given
26
+ context.)
27
+ property :language, :label => 'Language', :comment =>
28
+ %(A language of the resource.)
29
+ property :publisher, :label => 'Publisher', :comment =>
30
+ %(An entity responsible for making the resource available.)
31
+ property :relation, :label => 'Relation', :comment =>
32
+ %(A related resource.)
33
+ property :rights, :label => 'Rights', :comment =>
34
+ %(Information about rights held in and over the resource.)
35
+ property :source, :label => 'Source', :comment =>
36
+ %(A related resource from which the described resource is
37
+ derived.)
38
+ property :subject, :label => 'Subject', :comment =>
39
+ %(The topic of the resource.)
40
+ property :title, :label => 'Title', :comment =>
41
+ %(A name given to the resource.)
42
+ property :type, :label => 'Type', :comment =>
43
+ %(The nature or genre of the resource.)
22
44
  end
23
45
  end
@@ -1,45 +1,124 @@
1
+ # This file generated automatically using vocab-fetch from http://usefulinc.com/ns/doap#
2
+ require 'rdf'
1
3
  module RDF
2
- ##
3
- # Description of a Project (DOAP) vocabulary.
4
- #
5
- # @see http://trac.usefulinc.com/doap
6
- class DOAP < Vocabulary("http://usefulinc.com/ns/doap#")
7
- property :'anon-root'
8
- property :audience
9
- property :blog
10
- property :browse
11
- property :'bug-database'
12
- property :category
13
- property :created
14
- property :description
15
- property :developer
16
- property :documenter
17
- property :'download-mirror'
18
- property :'download-page'
19
- property :'file-release'
20
- property :helper
21
- property :homepage
22
- property :implements
23
- property :language
24
- property :license
25
- property :location
26
- property :'mailing-list'
27
- property :maintainer
28
- property :module
29
- property :name
30
- property :'old-homepage'
31
- property :os
32
- property :platform
33
- property :'programming-language'
34
- property :release
35
- property :repository
36
- property :revision
37
- property :screenshots
38
- property :'service-endpoint'
39
- property :shortdesc
40
- property :tester
41
- property :translator
42
- property :vendor
43
- property :wiki
4
+ class DOAP < StrictVocabulary("http://usefulinc.com/ns/doap#")
5
+
6
+ # Class definitions
7
+ property :BazaarBranch, :label => 'Bazaar Branch', :comment =>
8
+ %(Bazaar source code branch.)
9
+ property :BKRepository, :label => 'BitKeeper Repository', :comment =>
10
+ %(BitKeeper source code repository.)
11
+ property :BKRepository, :label => 'BitKeeper Repository', :comment =>
12
+ %(BitKeeper source code repository.)
13
+ property :CVSRepository, :label => 'CVS Repository', :comment =>
14
+ %(CVS source code repository.)
15
+ property :CVSRepository, :label => 'CVS Repository', :comment =>
16
+ %(CVS source code repository.)
17
+ property :ArchRepository, :label => 'GNU Arch repository', :comment =>
18
+ %(GNU Arch source code repository.)
19
+ property :ArchRepository, :label => 'GNU Arch repository', :comment =>
20
+ %(GNU Arch source code repository.)
21
+ property :GitRepository, :label => 'Git Repository', :comment =>
22
+ %(Git source code repository.)
23
+ property :HgRepository, :label => 'Mercurial Repository', :comment =>
24
+ %(Mercurial source code repository.)
25
+ property :Project, :label => 'Project', :comment =>
26
+ %(A project.)
27
+ property :Repository, :label => 'Repository', :comment =>
28
+ %(Source code repository.)
29
+ property :Specification, :label => 'Specification', :comment =>
30
+ %(A specification of a system's aspects, technical or otherwise.)
31
+ property :SVNRepository, :label => 'Subversion Repository', :comment =>
32
+ %(Subversion source code repository.)
33
+ property :Version, :label => 'Version', :comment =>
34
+ %(Version information of a project release.)
35
+ property :DarcsRepository, :label => 'darcs Repository', :comment =>
36
+ %(darcs source code repository.)
37
+
38
+ # Property definitions
39
+ property :implements, :label => 'Implements specification', :comment =>
40
+ %(A specification that a project implements. Could be a
41
+ standard, API or legally defined level of conformance.)
42
+ property :"anon-root", :label => 'anonymous root', :comment =>
43
+ %(Repository for anonymous access.)
44
+ property :audience, :label => 'audience', :comment =>
45
+ %(Description of target user base)
46
+ property :blog, :label => 'blog', :comment =>
47
+ %(URI of a blog related to a project)
48
+ property :browse, :label => 'browse', :comment =>
49
+ %(Web browser interface to repository.)
50
+ property :"bug-database", :label => 'bug database', :comment =>
51
+ %(Bug tracker for a project.)
52
+ property :category, :label => 'category', :comment =>
53
+ %(A category of project.)
54
+ property :created, :label => 'created', :comment =>
55
+ %(Date when something was created, in YYYY-MM-DD form. e.g.
56
+ 2004-04-05)
57
+ property :description, :label => 'description', :comment =>
58
+ %(Plain text description of a project, of 2-4 sentences in
59
+ length.)
60
+ property :developer, :label => 'developer', :comment =>
61
+ %(Developer of software for the project.)
62
+ property :documenter, :label => 'documenter', :comment =>
63
+ %(Contributor of documentation to the project.)
64
+ property :"download-mirror", :label => 'download mirror', :comment =>
65
+ %(Mirror of software download web page.)
66
+ property :"download-page", :label => 'download page', :comment =>
67
+ %(Web page from which the project software can be downloaded.)
68
+ property :"file-release", :label => 'file-release', :comment =>
69
+ %(URI of download associated with this release.)
70
+ property :helper, :label => 'helper', :comment =>
71
+ %(Project contributor.)
72
+ property :homepage, :label => 'homepage', :comment =>
73
+ %(URL of a project's homepage, associated with exactly one
74
+ project.)
75
+ property :language, :label => 'language', :comment =>
76
+ %(ISO language code a project has been translated into)
77
+ property :license, :label => 'license', :comment =>
78
+ %(The URI of an RDF description of the license the software is
79
+ distributed under.)
80
+ property :"mailing-list", :label => 'mailing list', :comment =>
81
+ %(Mailing list home page or email address.)
82
+ property :maintainer, :label => 'maintainer', :comment =>
83
+ %(Maintainer of a project, a project leader.)
84
+ property :module, :label => 'module', :comment =>
85
+ %(Module name of a repository.)
86
+ property :name, :label => 'name', :comment =>
87
+ %(A name of something.)
88
+ property :"old-homepage", :label => 'old homepage', :comment =>
89
+ %(URL of a project's past homepage, associated with exactly one
90
+ project.)
91
+ property :os, :label => 'operating system', :comment =>
92
+ %(Operating system that a project is limited to. Omit this
93
+ property if the project is not OS-specific.)
94
+ property :platform, :label => 'platform', :comment =>
95
+ %(Indicator of software platform \(non-OS specific\), e.g. Java,
96
+ Firefox, ECMA CLR)
97
+ property :"programming-language", :label => 'programming language', :comment =>
98
+ %(Programming language a project is implemented in or intended
99
+ for use with.)
100
+ property :release, :label => 'release', :comment =>
101
+ %(A project release.)
102
+ property :repository, :label => 'repository', :comment =>
103
+ %(Source code repository.)
104
+ property :location, :label => 'repository location', :comment =>
105
+ %(Location of a repository.)
106
+ property :revision, :label => 'revision', :comment =>
107
+ %(Revision identifier of a software release.)
108
+ property :screenshots, :label => 'screenshots', :comment =>
109
+ %(Web page with screenshots of project.)
110
+ property :"service-endpoint", :label => 'service endpoint', :comment =>
111
+ %(The URI of a web service endpoint where software as a service
112
+ may be accessed)
113
+ property :shortdesc, :label => 'short description', :comment =>
114
+ %(Short \(8 or 9 words\) plain text description of a project.)
115
+ property :tester, :label => 'tester', :comment =>
116
+ %(A tester or other quality control contributor.)
117
+ property :translator, :label => 'translator', :comment =>
118
+ %(Contributor of translations to the project.)
119
+ property :vendor, :label => 'vendor', :comment =>
120
+ %(Vendor organization: commercial, free or otherwise)
121
+ property :wiki, :label => 'wiki', :comment =>
122
+ %(URL of Wiki for collaborative discussion of project.)
44
123
  end
45
124
  end
@@ -1,168 +1,543 @@
1
+ # This file generated automatically using vocab-fetch from http://www.w3.org/2003/12/exif/ns#
2
+ require 'rdf'
1
3
  module RDF
2
- ##
3
- # Exchangeable Image File Format (EXIF) vocabulary.
4
- #
5
- # @see http://www.w3.org/2003/12/exif/
6
- class EXIF < Vocabulary("http://www.w3.org/2003/12/exif/ns#")
7
- property :_unknown
8
- property :apertureValue
9
- property :artist
10
- property :bitsPerSample
11
- property :brightnessValue
12
- property :cfaPattern
13
- property :colorSpace
14
- property :componentsConfiguration
15
- property :compressedBitsPerPixel
16
- property :compression
17
- property :contrast
18
- property :copyright
19
- property :customRendered
20
- property :datatype
21
- property :date
22
- property :dateAndOrTime
23
- property :dateTime
24
- property :dateTimeDigitized
25
- property :dateTimeOriginal
26
- property :deviceSettingDescription
27
- property :digitalZoomRatio
28
- property :exifAttribute
29
- property :exifVersion
30
- property :exif_IFD_Pointer
31
- property :exifdata
32
- property :exposureBiasValue
33
- property :exposureIndex
34
- property :exposureMode
35
- property :exposureProgram
36
- property :exposureTime
37
- property :fNumber
38
- property :fileSource
39
- property :flash
40
- property :flashEnergy
41
- property :flashpixVersion
42
- property :focalLength
43
- property :focalLengthIn35mmFilm
44
- property :focalPlaneResolutionUnit
45
- property :focalPlaneXResolution
46
- property :focalPlaneYResolution
47
- property :gainControl
48
- property :geo
49
- property :gpsAltitude
50
- property :gpsAltitudeRef
51
- property :gpsAreaInformation
52
- property :gpsDOP
53
- property :gpsDateStamp
54
- property :gpsDestBearing
55
- property :gpsDestBearingRef
56
- property :gpsDestDistance
57
- property :gpsDestDistanceRef
58
- property :gpsDestLatitude
59
- property :gpsDestLatitudeRef
60
- property :gpsDestLongitude
61
- property :gpsDestLongitudeRef
62
- property :gpsDifferential
63
- property :gpsImgDirection
64
- property :gpsImgDirectionRef
65
- property :gpsInfo
66
- property :gpsInfo_IFD_Pointer
67
- property :gpsLatitude
68
- property :gpsLatitudeRef
69
- property :gpsLongitude
70
- property :gpsLongitudeRef
71
- property :gpsMapDatum
72
- property :gpsMeasureMode
73
- property :gpsProcessingMethod
74
- property :gpsSatellites
75
- property :gpsSpeed
76
- property :gpsSpeedRef
77
- property :gpsStatus
78
- property :gpsTimeStamp
79
- property :gpsTrack
80
- property :gpsTrackRef
81
- property :gpsVersionID
82
- property :height
83
- property :ifdPointer
84
- property :imageConfig
85
- property :imageDataCharacter
86
- property :imageDataStruct
87
- property :imageDescription
88
- property :imageLength
89
- property :imageUniqueID
90
- property :imageWidth
91
- property :interopInfo
92
- property :interoperabilityIndex
93
- property :interoperabilityVersion
94
- property :interoperability_IFD_Pointer
95
- property :isoSpeedRatings
96
- property :jpegInterchangeFormat
97
- property :jpegInterchangeFormatLength
98
- property :length
99
- property :lightSource
100
- property :make
101
- property :makerNote
102
- property :maxApertureValue
103
- property :meter
104
- property :meteringMode
105
- property :mm
106
- property :model
107
- property :oecf
108
- property :orientation
109
- property :photometricInterpretation
110
- property :pictTaking
111
- property :pimBrightness
112
- property :pimColorBalance
113
- property :pimContrast
114
- property :pimInfo
115
- property :pimSaturation
116
- property :pimSharpness
117
- property :pixelXDimension
118
- property :pixelYDimension
119
- property :planarConfiguration
120
- property :primaryChromaticities
121
- property :printImageMatching_IFD_Pointer
122
- property :recOffset
123
- property :referenceBlackWhite
124
- property :relatedFile
125
- property :relatedImageFileFormat
126
- property :relatedImageLength
127
- property :relatedImageWidth
128
- property :relatedSoundFile
129
- property :resolution
130
- property :resolutionUnit
131
- property :rowsPerStrip
132
- property :samplesPerPixel
133
- property :saturation
134
- property :sceneCaptureType
135
- property :sceneType
136
- property :seconds
137
- property :sensingMethod
138
- property :sharpness
139
- property :shutterSpeedValue
140
- property :software
141
- property :spatialFrequencyResponse
142
- property :spectralSensitivity
143
- property :stripByteCounts
144
- property :stripOffsets
145
- property :subSecTime
146
- property :subSecTimeDigitized
147
- property :subSecTimeOriginal
148
- property :subjectArea
149
- property :subjectDistance
150
- property :subjectDistanceRange
151
- property :subjectLocation
152
- property :subseconds
153
- property :tag_number
154
- property :tagid
155
- property :transferFunction
156
- property :userComment
157
- property :userInfo
158
- property :versionInfo
159
- property :whiteBalance
160
- property :whitePoint
161
- property :width
162
- property :xResolution
163
- property :yCbCrCoefficients
164
- property :yCbCrPositioning
165
- property :yCbCrSubSampling
166
- property :yResolution
4
+ class EXIF < StrictVocabulary("http://www.w3.org/2003/12/exif/ns#")
5
+
6
+ # Class definitions
7
+ property :IFD, :label => 'IFD', :comment =>
8
+ %(An Image File Directory)
9
+
10
+ # Property definitions
11
+ property :apertureValue, :label => 'ApertureValue', :comment =>
12
+ %(The lens aperture. The unit is the APEX value.)
13
+ property :artist, :label => 'Artist', :comment =>
14
+ %(Person who created the image)
15
+ property :bitsPerSample, :label => 'BitsPerSample', :comment =>
16
+ %(The number of bits per image component. In this standard each
17
+ component of the image is 8 bits, so the value for this tag is
18
+ 8. See also SamplesPerPixel. In JPEG compressed data a JPEG
19
+ marker is used instead of this tag.)
20
+ property :brightnessValue, :label => 'BrightnessValue', :comment =>
21
+ %(The value of brightness. The unit is the APEX value.
22
+ Ordinarily it is given in the range of -99.99 to 99.99. Note
23
+ that if the numerator of the recorded value is FFFFFFFF.H,
24
+ Unknown shall be indicated.)
25
+ property :cfaPattern, :label => 'CFAPattern', :comment =>
26
+ %(The color filter array \(CFA\) geometric pattern of the image
27
+ sensor when a one-chip color area sensor is used. It does not
28
+ apply to all sensing methods.)
29
+ property :colorSpace, :label => 'ColorSpace', :comment =>
30
+ %(The color space information tag \(ColorSpace\) is always
31
+ recorded as the color space specifier. Normally sRGB \(=1\) is
32
+ used to define the color space based on the PC monitor
33
+ conditions and environment.)
34
+ property :componentsConfiguration, :label => 'ComponentsConfiguration', :comment =>
35
+ %(Information specific to compressed data. The channels of each
36
+ component are arranged in order from the 1st component to the
37
+ 4th. For uncompressed data the data arrangement is given in
38
+ the PhotometricInterpretation tag. However, since
39
+ PhotometricInterpretation can only express the order of Y,Cb
40
+ and Cr, this tag is provided for cases when compressed data
41
+ uses components other than Y, Cb, and Cr and to enable support
42
+ of other sequences.)
43
+ property :compressedBitsPerPixel, :label => 'CompressedBitsPerPixel', :comment =>
44
+ %(Information specific to compressed data. The compression mode
45
+ used for a compressed image is indicated in unit bits per
46
+ pixel.)
47
+ property :compression, :label => 'Compression', :comment =>
48
+ %(The compression scheme used for the image data. When a primary
49
+ image is JPEG compressed, this designation is not necessary
50
+ and is omitted. When thumbnails use JPEG compression, this tag
51
+ value is set to 6.)
52
+ property :contrast, :label => 'Contrast', :comment =>
53
+ %(The direction of contrast processing applied by the camera
54
+ when the image was shot.)
55
+ property :copyright, :label => 'Copyright', :comment =>
56
+ %(Copyright information. In this standard the tag is used to
57
+ indicate both the photographer and editor copyrights. It is
58
+ the copyright notice of the person or organization claiming
59
+ rights to the image.)
60
+ property :customRendered, :label => 'CustomRendered', :comment =>
61
+ %(The use of special processing on image data, such as rendering
62
+ geared to output. When special processing is performed, the
63
+ reader is expected to disable or minimize any further
64
+ processing.)
65
+ property :datatype, :label => 'Data Type', :comment =>
66
+ %(The Exif field data type, such as ascii, byte, short etc.)
67
+ property :date, :label => 'Date', :comment =>
68
+ %(a date information. Usually saved as YYYY:MM:DD \(HH:MM:SS\)
69
+ format in Exif data, but represented here as W3C-DTF format)
70
+ property :dateAndOrTime, :label => 'Date and/or Time', :comment =>
71
+ %(An attribute relating to Date and/or Time)
72
+ property :dateTime, :label => 'DateTime', :comment =>
73
+ %(The date and time of image creation. In this standard it is
74
+ the date and time the file was changed.)
75
+ property :dateTimeDigitized, :label => 'DateTimeDigitized', :comment =>
76
+ %(The date and time when the image was stored as digital data.
77
+ If, for example, an image was captured by DSC and at the same
78
+ time the file was recorded, then the DateTimeOriginal and
79
+ DateTimeDigitized will have the same contents.)
80
+ property :dateTimeOriginal, :label => 'DateTimeOriginal', :comment =>
81
+ %(The date and time when the original image data was generated.
82
+ For a DSC the date and time the picture was taken are
83
+ recorded.)
84
+ property :deviceSettingDescription, :label => 'DeviceSettingDescription', :comment =>
85
+ %(Information on the picture-taking conditions of a particular
86
+ camera model. The tag is used only to indicate the
87
+ picture-taking conditions in the reader.)
88
+ property :digitalZoomRatio, :label => 'DigitalZoomRatio', :comment =>
89
+ %(The digital zoom ratio when the image was shot. If the
90
+ numerator of the recorded value is 0, this indicates that
91
+ digital zoom was not used.)
92
+ property :exifAttribute, :label => 'Exif Attribute', :comment =>
93
+ %(A property that connects an IFD to one of its entries. Super
94
+ property which integrates all Exif tags.)
95
+ property :exif_IFD_Pointer, :label => 'Exif IFD Pointer', :comment =>
96
+ %(A pointer to the Exif IFD, which is a set of tags for
97
+ recording Exif-specific attribute information.)
98
+ property :exifdata, :label => 'Exif data', :comment =>
99
+ %(An Exif IFD data entry)
100
+ property :exifVersion, :label => 'ExifVersion', :comment =>
101
+ %(Exif Version)
102
+ property :exposureBiasValue, :label => 'ExposureBiasValue', :comment =>
103
+ %(The exposure bias. The unit is the APEX value. Ordinarily it
104
+ is given in the range of -99.99 to 99.99.)
105
+ property :exposureIndex, :label => 'ExposureIndex', :comment =>
106
+ %(The exposure index selected on the camera or input device at
107
+ the time the image is captured.)
108
+ property :exposureMode, :label => 'ExposureMode', :comment =>
109
+ %(the exposure mode set when the image was shot. In
110
+ auto-bracketing mode, the camera shoots a series of frames of
111
+ the same scene at different exposure settings.)
112
+ property :exposureProgram, :label => 'ExposureProgram', :comment =>
113
+ %(The class of the program used by the camera to set exposure
114
+ when the picture is taken.)
115
+ property :exposureTime, :label => 'ExposureTime', :comment =>
116
+ %(Exposure time, given in seconds \(sec\).)
117
+ property :fNumber, :label => 'FNumber', :comment =>
118
+ %(F number)
119
+ property :fileSource, :label => 'FileSource', :comment =>
120
+ %(The image source. If a DSC recorded the image, this tag value
121
+ of this tag always be set to 3, indicating that the image was
122
+ recorded on a DSC.)
123
+ property :flash, :label => 'Flash', :comment =>
124
+ %(The status of flash when the image was shot.)
125
+ property :flashEnergy, :label => 'FlashEnergy', :comment =>
126
+ %(The strobe energy at the time the image is captured, as
127
+ measured in Beam Candle Power Seconds \(BCPS\).)
128
+ property :flashpixVersion, :label => 'FlashpixVersion', :comment =>
129
+ %(The Flashpix format version supported by a FPXR file. If the
130
+ FPXR function supports Flashpix format Ver. 1.0, this is
131
+ indicated similarly to ExifVersion by recording "0100" as
132
+ 4-byte ASCII.)
133
+ property :focalLength, :label => 'FocalLength', :comment =>
134
+ %(The actual focal length of the lens, in mm. Conversion is not
135
+ made to the focal length of a 35 mm film camera.)
136
+ property :focalLengthIn35mmFilm, :label => 'FocalLengthIn35mmFilm', :comment =>
137
+ %(The equivalent focal length assuming a 35mm film camera, in
138
+ mm. A value of 0 means the focal length is unknown. Note that
139
+ this tag differs from the FocalLength tag.)
140
+ property :focalPlaneResolutionUnit, :label => 'FocalPlaneResolutionUnit', :comment =>
141
+ %(The unit for measuring FocalPlaneXResolution and
142
+ FocalPlaneYResolution. This value is the same as the
143
+ ResolutionUnit.)
144
+ property :focalPlaneXResolution, :label => 'FocalPlaneXResolution', :comment =>
145
+ %(The number of pixels in the image width \(X\) direction per
146
+ FocalPlaneResolutionUnit on the camera focal plane.)
147
+ property :focalPlaneYResolution, :label => 'FocalPlaneYResolution', :comment =>
148
+ %(The number of pixels in the image height \(Y\) direction per
149
+ FocalPlaneResolutionUnit on the camera focal plane.)
150
+ property :gpsInfo, :label => 'GPS Info', :comment =>
151
+ %(An attribute relating to GPS information)
152
+ property :gpsAltitude, :label => 'GPSAltitude', :comment =>
153
+ %(The altitude based on the reference in GPSAltitudeRef.
154
+ Altitude is expressed as one RATIONAL value. The reference
155
+ unit is meters.)
156
+ property :gpsAltitudeRef, :label => 'GPSAltitudeRef', :comment =>
157
+ %(Indicates the altitude used as the reference altitude. If the
158
+ reference is sea level and the altitude is above sea level, 0
159
+ is given. If the altitude is below sea level, a value of 1 is
160
+ given and the altitude is indicated as an absolute value in
161
+ the GPSAltitude tag. The reference unit is meters.)
162
+ property :gpsAreaInformation, :label => 'GPSAreaInformation', :comment =>
163
+ %(A character string recording the name of the GPS area. The
164
+ first byte indicates the character code used, and this is
165
+ followed by the name of the GPS area.)
166
+ property :gpsDOP, :label => 'GPSDOP', :comment =>
167
+ %(The GPS DOP \(data degree of precision\). An HDOP value is
168
+ written during two-dimensional measurement, and PDOP during
169
+ three-dimensional measurement.)
170
+ property :gpsDateStamp, :label => 'GPSDateStamp', :comment =>
171
+ %(date and time information relative to UTC \(Coordinated
172
+ Universal Time\). The record format is "YYYY:MM:DD" while
173
+ converted to W3C-DTF to use in RDF)
174
+ property :gpsDestBearing, :label => 'GPSDestBearing', :comment =>
175
+ %(The bearing to the destination point. The range of values is
176
+ from 0.00 to 359.99.)
177
+ property :gpsDestBearingRef, :label => 'GPSDestBearingRef', :comment =>
178
+ %(Indicates the reference used for giving the bearing to the
179
+ destination point. 'T' denotes true direction and 'M' is
180
+ magnetic direction.)
181
+ property :gpsDestDistance, :label => 'GPSDestDistance', :comment =>
182
+ %(The distance to the destination point.)
183
+ property :gpsDestDistanceRef, :label => 'GPSDestDistanceRef', :comment =>
184
+ %(Indicates the unit used to express the distance to the
185
+ destination point. 'K', 'M' and 'N' represent kilometers,
186
+ miles and knots.)
187
+ property :gpsDestLatitude, :label => 'GPSDestLatitude', :comment =>
188
+ %(Latitude of destination, expressed as three values giving the
189
+ degrees, minutes, and seconds, respectively.)
190
+ property :gpsDestLatitudeRef, :label => 'GPSDestLatitudeRef', :comment =>
191
+ %(Reference for latitude of destination)
192
+ property :gpsDestLongitude, :label => 'GPSDestLongitude', :comment =>
193
+ %(Longitude of destination, expressed as three values giving the
194
+ degrees, minutes, and seconds, respectively.)
195
+ property :gpsDestLongitudeRef, :label => 'GPSDestLongitudeRef', :comment =>
196
+ %(Reference for longitude of destination)
197
+ property :gpsDifferential, :label => 'GPSDifferential', :comment =>
198
+ %(Indicates whether differential correction is applied to the
199
+ GPS receiver.)
200
+ property :gpsImgDirection, :label => 'GPSImgDirection', :comment =>
201
+ %(The direction of the image when it was captured. The range of
202
+ values is from 0.00 to 359.99.)
203
+ property :gpsImgDirectionRef, :label => 'GPSImgDirectionRef', :comment =>
204
+ %(The reference for giving the direction of the image when it is
205
+ captured. 'T' denotes true direction and 'M' is magnetic
206
+ direction.)
207
+ property :gpsInfo_IFD_Pointer, :label => 'GPSInfo IFD Pointer', :comment =>
208
+ %(A pointer to the GPS IFD, which is a set of tags for recording
209
+ GPS information.)
210
+ property :gpsLatitude, :label => 'GPSLatitude', :comment =>
211
+ %(The latitude, expressed as three values giving the degrees,
212
+ minutes, and seconds, respectively.)
213
+ property :gpsLatitudeRef, :label => 'GPSLatitudeRef', :comment =>
214
+ %(Indicates whether the latitude is north or south latitude. The
215
+ ASCII value 'N' indicates north latitude, and 'S' is south
216
+ latitude.)
217
+ property :gpsLongitude, :label => 'GPSLongitude', :comment =>
218
+ %(The longitude, expressed as three values giving the degrees,
219
+ minutes, and seconds, respectively.)
220
+ property :gpsLongitudeRef, :label => 'GPSLongitudeRef', :comment =>
221
+ %(Indicates whether the longitude is east or west longitude.
222
+ ASCII 'E' indicates east longitude, and 'W' is west longitude.)
223
+ property :gpsMapDatum, :label => 'GPSMapDatum', :comment =>
224
+ %(The geodetic survey data used by the GPS receiver. If the
225
+ survey data is restricted to Japan, the value of this tag is
226
+ 'TOKYO' or 'WGS-84'. If a GPS Info tag is recorded, it is
227
+ strongly recommended that this tag be recorded.)
228
+ property :gpsMeasureMode, :label => 'GPSMeasureMode', :comment =>
229
+ %(The GPS measurement mode. '2' means two-dimensional
230
+ measurement and '3' means three-dimensional measurement is in
231
+ progress.)
232
+ property :gpsProcessingMethod, :label => 'GPSProcessingMethod', :comment =>
233
+ %(A character string recording the name of the method used for
234
+ location finding. The first byte indicates the character code
235
+ used, and this is followed by the name of the method.)
236
+ property :gpsSatellites, :label => 'GPSSatellites', :comment =>
237
+ %(The GPS satellites used for measurements. This tag can be used
238
+ to describe the number of satellites, their ID number, angle
239
+ of elevation, azimuth, SNR and other information in ASCII
240
+ notation. The format is not specified. If the GPS receiver is
241
+ incapable of taking measurements, value of the tag shall be
242
+ set to NULL.)
243
+ property :gpsSpeed, :label => 'GPSSpeed', :comment =>
244
+ %(The speed of GPS receiver movement.)
245
+ property :gpsSpeedRef, :label => 'GPSSpeedRef', :comment =>
246
+ %(The unit used to express the GPS receiver speed of movement.
247
+ 'K' 'M' and 'N' represents kilometers per hour, miles per
248
+ hour, and knots.)
249
+ property :gpsStatus, :label => 'GPSStatus', :comment =>
250
+ %(The status of the GPS receiver when the image is recorded. 'A'
251
+ means measurement is in progress, and 'V' means the
252
+ measurement is Interoperability.)
253
+ property :gpsTimeStamp, :label => 'GPSTimeStamp', :comment =>
254
+ %(The time as UTC \(Coordinated Universal Time\). TimeStamp is
255
+ expressed as three RATIONAL values giving the hour, minute,
256
+ and second.)
257
+ property :gpsTrack, :label => 'GPSTrack', :comment =>
258
+ %(The direction of GPS receiver movement. The range of values is
259
+ from 0.00 to 359.99.)
260
+ property :gpsTrackRef, :label => 'GPSTrackRef', :comment =>
261
+ %(The reference for giving the direction of GPS receiver
262
+ movement. 'T' denotes true direction and 'M' is magnetic
263
+ direction.)
264
+ property :gpsVersionID, :label => 'GPSVersionID', :comment =>
265
+ %(The version of GPSInfoIFD. The version is given as 2.2.0.0.
266
+ This tag is mandatory when GPSInfo tag is present.)
267
+ property :gainControl, :label => 'GainControl', :comment =>
268
+ %(The degree of overall image gain adjustment.)
269
+ property :geo, :label => 'Geometric data', :comment =>
270
+ %(Geometric data such as latitude, longitude and altitude.
271
+ Usually saved as rational number.)
272
+ property :height, :label => 'Height', :comment =>
273
+ %(Height of an object)
274
+ property :ifdPointer, :label => 'IFD Pointer', :comment =>
275
+ %(A tag that refers a child IFD)
276
+ property :isoSpeedRatings, :label => 'ISOSpeedRatings', :comment =>
277
+ %(Indicates the ISO Speed and ISO Latitude of the camera or
278
+ input device as specified in ISO 12232.)
279
+ property :imageConfig, :label => 'Image Config', :comment =>
280
+ %(An attribute relating to Image Configuration)
281
+ property :imageDataCharacter, :label => 'Image Data Character', :comment =>
282
+ %(An attribute relating to image data characteristics)
283
+ property :imageDataStruct, :label => 'Image Data Structure', :comment =>
284
+ %(An attribute relating to image data structure)
285
+ property :imageDescription, :label => 'ImageDescription', :comment =>
286
+ %(A character string giving the title of the image. It may be a
287
+ comment such as "1988 company picnic" or the like. Two-byte
288
+ character codes cannot be used. When a 2-byte code is
289
+ necessary, the Exif Private tag UserComment is to be used.)
290
+ property :imageLength, :label => 'ImageLength', :comment =>
291
+ %(Image height. The number of rows of image data. In JPEG
292
+ compressed data a JPEG marker is used.)
293
+ property :imageUniqueID, :label => 'ImageUniqueID', :comment =>
294
+ %(An identifier assigned uniquely to each image. It is recorded
295
+ as an ASCII string equivalent to hexadecimal notation and
296
+ 128-bit fixed length.)
297
+ property :imageWidth, :label => 'ImageWidth', :comment =>
298
+ %(Image width. The number of columns of image data, equal to the
299
+ number of pixels per row. In JPEG compressed data a JPEG
300
+ marker is used instead of this tag.)
301
+ property :interoperability_IFD_Pointer, :label => 'Interoperability IFD Pointer', :comment =>
302
+ %(A pointer to the Interoperability IFD, which is composed of
303
+ tags storing the information to ensure the Interoperability)
304
+ property :interopInfo, :label => 'Interoperability Info', :comment =>
305
+ %(An attribute relating to Interoperability. Tags stored in
306
+ Interoperability IFD may be defined dependently to each
307
+ Interoperability rule.)
308
+ property :interoperabilityIndex, :label => 'InteroperabilityIndex', :comment =>
309
+ %(Indicates the identification of the Interoperability rule.
310
+ 'R98' = conforming to R98 file specification of Recommended
311
+ Exif Interoperability Rules \(ExifR98\) or to DCF basic file
312
+ stipulated by Design Rule for Camera File System. 'THM' =
313
+ conforming to DCF thumbnail file stipulated by Design rule for
314
+ Camera File System.)
315
+ property :interoperabilityVersion, :label => 'InteroperabilityVersion', :comment =>
316
+ %(Interoperability Version)
317
+ property :jpegInterchangeFormat, :label => 'JPEGInterchangeFormat', :comment =>
318
+ %(The offset to the start byte \(SOI\) of JPEG compressed
319
+ thumbnail data. This is not used for primary image JPEG data.)
320
+ property :jpegInterchangeFormatLength, :label => 'JPEGInterchangeFormatLength', :comment =>
321
+ %(The number of bytes of JPEG compressed thumbnail data. This is
322
+ not used for primary image JPEG data.)
323
+ property :length, :label => 'Length', :comment =>
324
+ %(Length of an object. Could be a subProperty of other general
325
+ schema.)
326
+ property :lightSource, :label => 'LightSource', :comment =>
327
+ %(Light source such as Daylight, Tungsten, Flash etc.)
328
+ property :make, :label => 'Make', :comment =>
329
+ %(Manufacturer of image input equipment)
330
+ property :makerNote, :label => 'MakerNote', :comment =>
331
+ %(Manufacturer notes)
332
+ property :maxApertureValue, :label => 'MaxApertureValue', :comment =>
333
+ %(The smallest F number of the lens. The unit is the APEX value.
334
+ Ordinarily it is given in the range of 00.00 to 99.99, but it
335
+ is not limited to this range.)
336
+ property :meter, :label => 'Meter', :comment =>
337
+ %(A length with unit of meter)
338
+ property :meteringMode, :label => 'MeteringMode', :comment =>
339
+ %(Metering mode, such as CenterWeightedAverage, Spot,
340
+ MultiSpot,Pattern, Partial etc.)
341
+ property :mm, :label => 'Milimeter', :comment =>
342
+ %(A length with unit of mm)
343
+ property :model, :label => 'Model', :comment =>
344
+ %(Model of image input equipment)
345
+ property :oecf, :label => 'OECF', :comment =>
346
+ %(Indicates the Opto-Electric Conversion Function \(OECF\)
347
+ specified in ISO 14524. OECF is the relationship between the
348
+ camera optical input and the image values.)
349
+ property :orientation, :label => 'Orientation', :comment =>
350
+ %(The image orientation viewed in terms of rows and columns.)
351
+ property :pimInfo, :label => 'PIM Info', :comment =>
352
+ %(An attribute relating to print image matching)
353
+ property :photometricInterpretation, :label => 'PhotometricInterpretation', :comment =>
354
+ %(Pixel composition. In JPEG compressed data a JPEG marker is
355
+ used instead of this tag.)
356
+ property :pictTaking, :label => 'PictTaking', :comment =>
357
+ %(An attribute relating to Picture-Taking Conditions)
358
+ property :pixelXDimension, :label => 'PixelXDimension', :comment =>
359
+ %(Information specific to compressed data. When a compressed
360
+ file is recorded, the valid width of the meaningful image
361
+ shall be recorded in this tag, whether or not there is padding
362
+ data or a restart marker. This tag should not exist in an
363
+ uncompressed file.)
364
+ property :pixelYDimension, :label => 'PixelYDimension', :comment =>
365
+ %(Information specific to compressed data. When a compressed
366
+ file is recorded, the valid height of the meaningful image
367
+ shall be recorded in this tag, whether or not there is padding
368
+ data or a restart marker. This tag should not exist in an
369
+ uncompressed file. Since data padding is unnecessary in the
370
+ vertical direction, the number of lines recorded in this valid
371
+ image height tag will in fact be the same as that recorded in
372
+ the SOF.)
373
+ property :planarConfiguration, :label => 'PlanarConfiguration', :comment =>
374
+ %(Indicates whether pixel components are recorded in chunky or
375
+ planar format. In JPEG compressed files a JPEG marker is used
376
+ instead of this tag. If this field does not exist, the TIFF
377
+ default of 1 \(chunky\) is assumed.)
378
+ property :primaryChromaticities, :label => 'PrimaryChromaticities', :comment =>
379
+ %(The chromaticity of the three primary colors of the image.
380
+ Normally this tag is not necessary, since color space is
381
+ specified in the color space information tag \(ColorSpace\).)
382
+ property :pimBrightness, :label => 'PrintIM Brightness', :comment =>
383
+ %(Brightness info for print image matching)
384
+ property :pimColorBalance, :label => 'PrintIM ColorBalance', :comment =>
385
+ %(ColorBalance info for print image matching)
386
+ property :pimContrast, :label => 'PrintIM Contrast', :comment =>
387
+ %(Contrast info for print image matching)
388
+ property :pimSaturation, :label => 'PrintIM Saturation', :comment =>
389
+ %(Saturation info for print image matching)
390
+ property :pimSharpness, :label => 'PrintIM Sharpness', :comment =>
391
+ %(Sharpness info for print image matching)
392
+ property :printImageMatching_IFD_Pointer, :label => 'PrintImageMatching IFD Pointer', :comment =>
393
+ %(A pointer to the print image matching IFD)
394
+ property :recOffset, :label => 'Recording Offset', :comment =>
395
+ %(An attribute relating to recording offset)
396
+ property :referenceBlackWhite, :label => 'ReferenceBlackWhite', :comment =>
397
+ %(The reference black point value and reference white point
398
+ value. The color space is declared in a color space
399
+ information tag, with the default being the value that gives
400
+ the optimal image characteristics Interoperability these
401
+ conditions.)
402
+ property :relatedFile, :label => 'Related File', :comment =>
403
+ %(Tag Relating to Related File Information)
404
+ property :relatedImageFileFormat, :label => 'RelatedImageFileFormat', :comment =>
405
+ %(Related image file format)
406
+ property :relatedImageLength, :label => 'RelatedImageLength', :comment =>
407
+ %(Related image length)
408
+ property :relatedImageWidth, :label => 'RelatedImageWidth', :comment =>
409
+ %(Related image width)
410
+ property :relatedSoundFile, :label => 'RelatedSoundFile', :comment =>
411
+ %(Related audio file)
412
+ property :resolution, :label => 'Resolution', :comment =>
413
+ %(a rational number representing a resolution. Could be a
414
+ subProperty of other general schema.)
415
+ property :resolutionUnit, :label => 'ResolutionUnit', :comment =>
416
+ %(The unit for measuring XResolution and YResolution. The same
417
+ unit is used for both XResolution and YResolution. If the
418
+ image resolution in unknown, 2 \(inches\) is designated.)
419
+ property :rowsPerStrip, :label => 'RowsPerStrip', :comment =>
420
+ %(The number of rows per strip. This is the number of rows in
421
+ the image of one strip when an image is divided into strips.
422
+ With JPEG compressed data this designation is not needed and
423
+ is omitted.)
424
+ property :samplesPerPixel, :label => 'SamplesPerPixel', :comment =>
425
+ %(The number of components per pixel. Since this standard
426
+ applies to RGB and YCbCr images, the value set for this tag is
427
+ 3. In JPEG compressed data a JPEG marker is used instead of
428
+ this tag.)
429
+ property :saturation, :label => 'Saturation', :comment =>
430
+ %(The direction of saturation processing applied by the camera
431
+ when the image was shot.)
432
+ property :sceneCaptureType, :label => 'SceneCaptureType', :comment =>
433
+ %(The type of scene that was shot. It can also be used to record
434
+ the mode in which the image was shot, such as Landscape,
435
+ Portrait etc. Note that this differs from the scene type
436
+ \(SceneType\) tag.)
437
+ property :sceneType, :label => 'SceneType', :comment =>
438
+ %(The type of scene. If a DSC recorded the image, this tag value
439
+ shall always be set to 1, indicating that the image was
440
+ directly photographed.)
441
+ property :seconds, :label => 'Seconds', :comment =>
442
+ %(a mesurement of time length with unit of second)
443
+ property :sensingMethod, :label => 'SensingMethod', :comment =>
444
+ %(The image sensor type on the camera or input device, such as
445
+ One-chip color area sensor etc.)
446
+ property :sharpness, :label => 'Sharpness', :comment =>
447
+ %(The direction of sharpness processing applied by the camera
448
+ when the image was shot.)
449
+ property :shutterSpeedValue, :label => 'ShutterSpeedValue', :comment =>
450
+ %(Shutter speed. The unit is the APEX \(Additive System of
451
+ Photographic Exposure\) setting)
452
+ property :software, :label => 'Software', :comment =>
453
+ %(The name and version of the software or firmware of the camera
454
+ or image input device used to generate the image.)
455
+ property :spatialFrequencyResponse, :label => 'SpatialFrequencyResponse', :comment =>
456
+ %(This tag records the camera or input device spatial frequency
457
+ table and SFR values in the direction of image width, image
458
+ height, and diagonal direction, as specified in ISO 12233.)
459
+ property :spectralSensitivity, :label => 'SpectralSensitivity', :comment =>
460
+ %(Indicates the spectral sensitivity of each channel of the
461
+ camera used. The tag value is an ASCII string compatible with
462
+ the standard developed by the ASTM Technical committee.)
463
+ property :stripByteCounts, :label => 'StripByteCounts', :comment =>
464
+ %(The total number of bytes in each strip. With JPEG compressed
465
+ data this designation is not needed and is omitted.)
466
+ property :stripOffsets, :label => 'StripOffsets', :comment =>
467
+ %(For each strip, the byte offset of that strip. With JPEG
468
+ compressed data this designation is not needed and is omitted.)
469
+ property :subSecTime, :label => 'SubSecTime', :comment =>
470
+ %(DateTime subseconds)
471
+ property :subSecTimeDigitized, :label => 'SubSecTimeDigitized', :comment =>
472
+ %(DateTimeDigitized subseconds)
473
+ property :subSecTimeOriginal, :label => 'SubSecTimeOriginal', :comment =>
474
+ %(DateTimeOriginal subseconds)
475
+ property :subjectArea, :label => 'SubjectArea', :comment =>
476
+ %(The location and area of the main subject in the overall
477
+ scene.)
478
+ property :subjectDistance, :label => 'SubjectDistance', :comment =>
479
+ %(The distance to the subject, given in meters. Note that if the
480
+ numerator of the recorded value is FFFFFFFF.H, Infinity shall
481
+ be indicated; and if the numerator is 0, Distance unknown
482
+ shall be indicated.)
483
+ property :subjectDistanceRange, :label => 'SubjectDistanceRange', :comment =>
484
+ %(The distance to the subject, such as Macro, Close View or
485
+ Distant View.)
486
+ property :subjectLocation, :label => 'SubjectLocation', :comment =>
487
+ %(The location of the main subject in the scene. The value of
488
+ this tag represents the pixel at the center of the main
489
+ subject relative to the left edge, prior to rotation
490
+ processing as per the Rotation tag. The first value indicates
491
+ the X column number and second indicates the Y row number.)
492
+ property :subseconds, :label => 'Subseconds', :comment =>
493
+ %(A tag used to record fractions of seconds for a date property)
494
+ property :tagid, :label => 'Tag ID', :comment =>
495
+ %(The Exif tag number with context prefix, such as IFD type or
496
+ maker name)
497
+ property :tag_number, :label => 'Tag number', :comment =>
498
+ %(The Exif tag number)
499
+ property :transferFunction, :label => 'TransferFunction', :comment =>
500
+ %(A transfer function for the image, described in tabular style.
501
+ Normally this tag is not necessary, since color space is
502
+ specified in the color space information tag \(ColorSpace\).)
503
+ property :_unknown, :label => 'Unknown tag', :comment =>
504
+ %(An Exif tag whose meaning is not known)
505
+ property :userInfo, :label => 'User Info', :comment =>
506
+ %(An attribute relating to User Information)
507
+ property :userComment, :label => 'UserComment', :comment =>
508
+ %(A tag for Exif users to write keywords or comments on the
509
+ image besides those in ImageDescription, and without the
510
+ character code limitations of the ImageDescription tag. The
511
+ character code used in the UserComment tag is identified based
512
+ on an ID code in a fixed 8-byte area at the start of the tag
513
+ data area.)
514
+ property :versionInfo, :label => 'Version Info', :comment =>
515
+ %(An attribute relating to Version)
516
+ property :whiteBalance, :label => 'WhiteBalance', :comment =>
517
+ %(The white balance mode set when the image was shot.)
518
+ property :whitePoint, :label => 'WhitePoint', :comment =>
519
+ %(The chromaticity of the white point of the image. Normally
520
+ this tag is not necessary, since color space is specified in
521
+ the color space information tag \(ColorSpace\).)
522
+ property :width, :label => 'Width', :comment =>
523
+ %(Width of an object)
524
+ property :xResolution, :label => 'XResolution', :comment =>
525
+ %(The number of pixels per ResolutionUnit in the ImageWidth
526
+ direction. When the image resolution is unknown, 72 [dpi] is
527
+ designated.)
528
+ property :yCbCrCoefficients, :label => 'YCbCrCoefficients', :comment =>
529
+ %(The matrix coefficients for transformation from RGB to YCbCr
530
+ image data.)
531
+ property :yCbCrPositioning, :label => 'YCbCrPositioning', :comment =>
532
+ %(The position of chrominance components in relation to the
533
+ luminance component. This field is designated only for JPEG
534
+ compressed data or uncompressed YCbCr data.)
535
+ property :yCbCrSubSampling, :label => 'YCbCrSubSampling', :comment =>
536
+ %(The sampling ratio of chrominance components in relation to
537
+ the luminance component. In JPEG compressed data a JPEG marker
538
+ is used instead of this tag.)
539
+ property :yResolution, :label => 'YResolution', :comment =>
540
+ %(The number of pixels per ResolutionUnit in the ImageLength
541
+ direction. The same value as XResolution is designated.)
167
542
  end
168
543
  end