Sample EXIF Response from Flickr.com
Below I have posted a sample EXIF response from Flickr.com, as provided by the API call flickr.photos.getExif.
Some interesting remarks:
- EXIF information spans more tag spaces, the TIFF-Space (inherited from the file format) carries Camera Manufacturer, Resolution and DateTime information, while the EXIF tagspace offers picture parameters (such as ExposureTime). The "Olympus"-Tagspace refers to a proprietary makernote of the Camera Manufacturer.
- The internal clock of the camera was not adjusted, so we have ´0000:00:00 00:00:00´ timestamps.
- <exif> nodes always have a <raw> subnode providing the original EXIF-Data as provided by the camera. Sometimes there is also a <clean> subnode, which translates the numerical data/internal constants in a human-understandable format, e.g. Color Space= 1 means that the Color Space is sRGB.
<?xml version="1.0" encoding="utf-8"?> <rsp stat="ok"> <photo id="2110805913" secret="b1c9f3d446" server="2301" farm="3"> <exif tagspace="TIFF" tagspaceid="1" tag="270" label="Image Description"> <raw>OLYMPUS DIGITAL CAMERA</raw> </exif> <exif tagspace="TIFF" tagspaceid="1" tag="271" label="Make"> <raw>OLYMPUS OPTICAL CO.,LTD</raw> </exif> <exif tagspace="TIFF" tagspaceid="1" tag="272" label="Model"> <raw>C740UZ</raw> </exif> <exif tagspace="TIFF" tagspaceid="1" tag="274" label="Orientation"> <raw>1</raw> <clean>Horizontal (normal)</clean> </exif> <exif tagspace="TIFF" tagspaceid="1" tag="282" label="X-Resolution"> <raw>72/1</raw> <clean>72</clean> </exif> <exif tagspace="TIFF" tagspaceid="1" tag="283" label="Y-Resolution"> <raw>72/1</raw> <clean>72</clean> </exif> <exif tagspace="TIFF" tagspaceid="1" tag="296" label="Resolution Unit"> <raw>2</raw> <clean>Inches</clean> </exif> <exif tagspace="TIFF" tagspaceid="1" tag="305" label="Software"> <raw>v754u-82</raw> </exif> <exif tagspace="TIFF" tagspaceid="1" tag="306" label="Date and Time"> <raw>0000:00:00 00:00:00</raw> </exif> <exif tagspace="TIFF" tagspaceid="1" tag="531" label="YCbCr Positioning"> <raw>2</raw> <clean>Co-Sited</clean> </exif> <exif tagspace="EXIF" tagspaceid="0" tag="33434" label="Exposure"> <raw>10/50</raw> <clean>0.2 sec (1/5)</clean> </exif> <exif tagspace="EXIF" tagspaceid="0" tag="33437" label="Aperture"> <raw>28/10</raw> <clean>f/2.8</clean> </exif> <exif tagspace="EXIF" tagspaceid="0" tag="34850" label="Exposure Program"> <raw>5</raw> <clean>Creative</clean> </exif> <exif tagspace="EXIF" tagspaceid="0" tag="34855" label="ISO Speed"> <raw>200</raw> </exif> <exif tagspace="EXIF" tagspaceid="0" tag="36867" label="Date and Time (Original)"> <raw>0000:00:00 00:00:00</raw> </exif> <exif tagspace="EXIF" tagspaceid="0" tag="36868" label="Date and Time (Digitized)"> <raw>0000:00:00 00:00:00</raw> </exif> <exif tagspace="EXIF" tagspaceid="0" tag="37122" label="Compressed Bits per Pixel"> <raw>2/1</raw> <clean>2 bits</clean> </exif> <exif tagspace="EXIF" tagspaceid="0" tag="37380" label="Exposure Bias"> <raw>0/10</raw> <clean>0/10 EV</clean> </exif> <exif tagspace="EXIF" tagspaceid="0" tag="37381" label="Maximum Lens Aperture"> <raw>30/10</raw> </exif> <exif tagspace="EXIF" tagspaceid="0" tag="37383" label="Metering Mode"> <raw>5</raw> <clean>Pattern</clean> </exif> <exif tagspace="EXIF" tagspaceid="0" tag="37385" label="Flash"> <raw>16</raw> <clean>Flash did not fire</clean> </exif> <exif tagspace="EXIF" tagspaceid="0" tag="37386" label="Focal Length"> <raw>63/10</raw> <clean>6.3 mm</clean> </exif> <exif tagspace="EXIF" tagspaceid="0" tag="40961" label="Color Space"> <raw>1</raw> <clean>sRGB</clean> </exif> <exif tagspace="EXIF" tagspaceid="0" tag="40962" label="Pixel X-Dimension"> <raw>1280</raw> </exif> <exif tagspace="EXIF" tagspaceid="0" tag="40963" label="Pixel Y-Dimension"> <raw>960</raw> </exif> <exif tagspace="EXIF" tagspaceid="0" tag="41988" label="Digital Zoom Ratio"> <raw>0/100</raw> </exif> <exif tagspace="EXIF" tagspaceid="0" tag="41991" label="Gain Control"> <raw>1</raw> <clean>Low gain up</clean> </exif> <exif tagspace="TIFF" tagspaceid="1" tag="259" label="Compression"> <raw>6</raw> <clean>JPEG</clean> </exif> <exif tagspace="Olympus" tagspaceid="8" tag="512" label="Special Mode"> <raw>Normal Sequence Number: 0</raw> </exif> <exif tagspace="Olympus" tagspaceid="8" tag="513" label="JPEG Quality"> <raw>1</raw> </exif> <exif tagspace="Olympus" tagspaceid="8" tag="516" label="Digital Zoom"> <raw>100/100</raw> </exif> <exif tagspace="Olympus" tagspaceid="8" tag="517" label="Focal Plane Diagonal"> <raw>7162/1000</raw> </exif> <exif tagspace="Olympus" tagspaceid="8" tag="518" label="Skip"> <raw>-213, -407, -458, -184, -264, -230</raw> </exif> <exif tagspace="Olympus" tagspaceid="8" tag="519" label="Firmware Version"> <raw>SX754</raw> </exif> <exif tagspace="Olympus" tagspaceid="8" tag="520" label="Picture Info Data"> <raw>[pictureInfo] Resolution=1 [Camera Info] Type=SX754</raw> </exif> <exif tagspace="Olympus" tagspaceid="8" tag="521" label="Camera ID"> <raw>OLYMPUS DIGITAL CAMERAГїГїГїГїГїГїГїГїГї</raw> </exif> </photo> </rsp>
