You are here

README.txt in Exif 7

Same filename in this branch
  1. 7 README.txt
  2. 7 exif_location/README.txt
Same filename and directory in other branches
  1. 5 README.txt
  2. 6 README.txt
// $Id: 

README file for the Exif Drupal module.


Description
***********

The Exif module allows to display Exif metadata on image nodes. Exif is a
specification for the image file format used by digital cameras.

The metadata tags defined in the Exif standard cover a broad spectrum including [1]:

 * Date and time information. Digital cameras will record the current date and
   time and save this in the metadata.
 * Camera settings. This includes static information such as the camera model
   and make, and information that varies with each image such as orientation,
   aperture, shutter speed, focal length, metering mode, and film speed
   information.
 * Location information, which could come from a GPS receiver connected to the
   camera.
 * Descriptions and copyright information.

Administrators can choose via CCK fields which Exif information are read.

At this time, this module supports Exif information only with JPEG files.

[1] Reference: http://en.wikipedia.org/wiki/Exchangeable_image_file_format


Requirements
**************

CCK with at least textfields enabled.
Exif PHP Extension enabled.


Constraints
*************

Constraints with Image Processing utility :

Note that, it has been reported that when using GD, it strips some fields
(like field_gps_gpslatitude or field_gps_gpslongitude) from uploaded files.
Imagemagick seems not to have this limitation and does not strip these fields.
So Imagemagick is recommended when access to GPS data.

Usage
************

After installing it you can go to your CCK nodetype. It supports both the image module 
aswell as the imagefield module. Let's say you have an content type "photo". Go to your
cck settings and add a new field. For the name of the field you need to follow the following
naming conventions:

### Example:
#1 field_exif_exposuretime -> this would read the ExposureTime of the image and save it
in this field.

#2 field_ifd0_datetime ->	this would read the date time (2009:01:23 08:52:43) of the image.
as a field_type you can take for example a normal textfield, but also a date field would be
possible.

General rule is: [field]_[section]_[name] 

Under admin/settings/exif you can see a list of all possible information. These informations
are taken from the image "sample.jpg". I may not contain all tags available. If you are looking
for some specific tags you can just replace this image with your own image.

File

README.txt
View source
  1. // $Id:
  2. README file for the Exif Drupal module.
  3. Description
  4. ***********
  5. The Exif module allows to display Exif metadata on image nodes. Exif is a
  6. specification for the image file format used by digital cameras.
  7. The metadata tags defined in the Exif standard cover a broad spectrum including [1]:
  8. * Date and time information. Digital cameras will record the current date and
  9. time and save this in the metadata.
  10. * Camera settings. This includes static information such as the camera model
  11. and make, and information that varies with each image such as orientation,
  12. aperture, shutter speed, focal length, metering mode, and film speed
  13. information.
  14. * Location information, which could come from a GPS receiver connected to the
  15. camera.
  16. * Descriptions and copyright information.
  17. Administrators can choose via CCK fields which Exif information are read.
  18. At this time, this module supports Exif information only with JPEG files.
  19. [1] Reference: http://en.wikipedia.org/wiki/Exchangeable_image_file_format
  20. Requirements
  21. **************
  22. CCK with at least textfields enabled.
  23. Exif PHP Extension enabled.
  24. Constraints
  25. *************
  26. Constraints with Image Processing utility :
  27. Note that, it has been reported that when using GD, it strips some fields
  28. (like field_gps_gpslatitude or field_gps_gpslongitude) from uploaded files.
  29. Imagemagick seems not to have this limitation and does not strip these fields.
  30. So Imagemagick is recommended when access to GPS data.
  31. Usage
  32. ************
  33. After installing it you can go to your CCK nodetype. It supports both the image module
  34. aswell as the imagefield module. Let's say you have an content type "photo". Go to your
  35. cck settings and add a new field. For the name of the field you need to follow the following
  36. naming conventions:
  37. ### Example:
  38. #1 field_exif_exposuretime -> this would read the ExposureTime of the image and save it
  39. in this field.
  40. #2 field_ifd0_datetime -> this would read the date time (2009:01:23 08:52:43) of the image.
  41. as a field_type you can take for example a normal textfield, but also a date field would be
  42. possible.
  43. General rule is: [field]_[section]_[name]
  44. Under admin/settings/exif you can see a list of all possible information. These informations
  45. are taken from the image "sample.jpg". I may not contain all tags available. If you are looking
  46. for some specific tags you can just replace this image with your own image.