|
1 | 1 | # expkg-zone58.image.metadata |
2 | 2 | An XQuery library to extract image metadata as XML using the |
3 | 3 | [Drew Noakes library](http://drewnoakes.com/code/exif/) |
4 | | -The output xml format matches the o/p of the [Xmlcalabash](http://xmlcalabash.com/) metadata extension. |
5 | | -```` |
| 4 | +The output XML format matches the o/p of the [Xmlcalabash](http://xmlcalabash.com/) metadata extension. |
| 5 | +``` |
| 6 | +import module namespace imgmeta = "expkg-zone58:image.metadata" ; |
| 7 | +
|
| 8 | +declare variable $pic1:=resolve-uri("simple.jpg"); |
| 9 | +imgmeta:read($pic1) |
6 | 10 | <metadata> |
7 | | - <tag name=".." dir=".." type="..">value</tag> |
8 | | - <tag .. |
9 | | -</metadata> |
| 11 | + <tag name="Compression Type" dir="JPEG" type="0xfffffffd">Baseline</tag> |
| 12 | + <tag name="Data Precision" dir="JPEG" type="0x0000">8 bits</tag> |
| 13 | + <tag name="Image Height" dir="JPEG" type="0x0001">600 pixels</tag> |
| 14 | + <tag name="Image Width" dir="JPEG" type="0x0003">800 pixels</tag> |
| 15 | + <tag name="Number of Components" dir="JPEG" type="0x0005">3</tag> |
| 16 | + <tag name="Component 1" dir="JPEG" type="0x0006">Y component: Quantization table 0, Sampling factors 2 horiz/2 vert</tag> |
| 17 | + <tag name="Component 2" dir="JPEG" type="0x0007">Cb component: Quantization table 1, Sampling factors 1 horiz/1 vert</tag> |
| 18 | + <tag name="Component 3" dir="JPEG" type="0x0008">Cr component: Quantization table 1, Sampling factors 1 horiz/1 vert</tag> |
| 19 | + <tag name="JPEG Comment" dir="JpegComment" type="0x0000">AppleMark |
| 20 | +</tag> |
| 21 | + <tag name="Make" dir="Exif IFD0" type="0x010f">Canon</tag> |
| 22 | + <tag name="Model" dir="Exif IFD0" type="0x0110">Canon PowerShot S330</tag> |
| 23 | + <tag name="Orientation" dir="Exif IFD0" type="0x0112">Top, left side (Horizontal / normal)</tag> |
| 24 | + <tag name="X Resolution" dir="Exif IFD0" type="0x011a">180 dots per inch</tag> |
| 25 | + <tag name="Y Resolution" dir="Exif IFD0" type="0x011b">180 dots per inch</tag> |
| 26 | + <tag name="Resolution Unit" dir="Exif IFD0" type="0x0128">Inch</tag> |
| 27 | + <tag name="Software" dir="Exif IFD0" type="0x0131">QuickTime 6.0.2</tag> |
| 28 | + <tag name="Date/Time" dir="Exif IFD0" type="0x0132">2002-11-18T22:46:09</tag> |
| 29 | + <tag name="Host Computer" dir="Exif IFD0" type="0x013c">Mac OS X 10.2.2</tag> |
| 30 | +.. |
10 | 31 | ```` |
11 | | -BaseX 8.2.1+ required. |
| 32 | +
|
12 | 33 |
|
13 | 34 | # Usage |
14 | 35 | ```` |
|
0 commit comments