You are here

README.txt in Exif 5

Same filename and directory in other branches
  1. 6 README.txt
  2. 7 README.txt
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 what Exif tags they want to display, and control the
order of appearance. 

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

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


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

This module requires the PHP Exif Library (PEL), http://sourceforge.net/projects/pel

Your PHP must be compiled in with --enable-exif. Windows users must also have
the mbstring extension enabled.

PEL itself requires PHP version 5.
It does NOT work under PHP 4.

This module has been tested with PEL version 0.91.

And of course, this module also requires Drupal (version 5.0). This module won't
do anything without the Image module (http://drupal.org/project/image), as Exif
data is displayed only on image nodes.


Installation
************

1. Extract the 'exif' module directory, including all its subdirectories, into
   your Drupal modules directory.

2. Download and extract the PEL archive into the modules/exif/pel
   directory. When you're finished the directory structure should look something
   like:

   drupal/
     sites/
       example.com/
         modules/
           exif/
             pel/
               README
               INSTALL
               Pel.php
               PelJpeg.php
               ...
             
3. Enable the Exif module on your site's administer > site building > modules
   page. A database table will automagically be created at this point.

4. Go to administer > site configuration > exif settings, and select what Exif
   tags to display.


File

README.txt
View source
  1. README file for the Exif Drupal module.
  2. Description
  3. ***********
  4. The Exif module allows to display Exif metadata on image nodes. Exif is a
  5. specification for the image file format used by digital cameras.
  6. The metadata tags defined in the Exif standard cover a broad spectrum including [1]:
  7. * Date and time information. Digital cameras will record the current date and
  8. time and save this in the metadata.
  9. * Camera settings. This includes static information such as the camera model
  10. and make, and information that varies with each image such as orientation,
  11. aperture, shutter speed, focal length, metering mode, and film speed
  12. information.
  13. * Location information, which could come from a GPS receiver connected to the
  14. camera.
  15. * Descriptions and copyright information.
  16. Administrators can choose what Exif tags they want to display, and control the
  17. order of appearance.
  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. This module requires the PHP Exif Library (PEL), http://sourceforge.net/projects/pel
  23. Your PHP must be compiled in with --enable-exif. Windows users must also have
  24. the mbstring extension enabled.
  25. PEL itself requires PHP version 5.
  26. It does NOT work under PHP 4.
  27. This module has been tested with PEL version 0.91.
  28. And of course, this module also requires Drupal (version 5.0). This module won't
  29. do anything without the Image module (http://drupal.org/project/image), as Exif
  30. data is displayed only on image nodes.
  31. Installation
  32. ************
  33. 1. Extract the 'exif' module directory, including all its subdirectories, into
  34. your Drupal modules directory.
  35. 2. Download and extract the PEL archive into the modules/exif/pel
  36. directory. When you're finished the directory structure should look something
  37. like:
  38. drupal/
  39. sites/
  40. example.com/
  41. modules/
  42. exif/
  43. pel/
  44. README
  45. INSTALL
  46. Pel.php
  47. PelJpeg.php
  48. ...
  49. 3. Enable the Exif module on your site's administer > site building > modules
  50. page. A database table will automagically be created at this point.
  51. 4. Go to administer > site configuration > exif settings, and select what Exif
  52. tags to display.