diff options
author | Arun Isaac | 2017-02-21 23:25:06 +0530 |
---|---|---|
committer | Arun Isaac | 2017-02-21 23:25:06 +0530 |
commit | 7d42d9d2db950eaea8064238a99ac2c38faf43f9 (patch) | |
tree | 584b2d1ae1ab8ff339902a8fa39b0d1b39abdfe5 | |
parent | 245b1bffa6c325d6276ead70303472a60f0a17c5 (diff) | |
download | exiftool.el-7d42d9d2db950eaea8064238a99ac2c38faf43f9.tar.gz exiftool.el-7d42d9d2db950eaea8064238a99ac2c38faf43f9.tar.lz exiftool.el-7d42d9d2db950eaea8064238a99ac2c38faf43f9.zip |
Add function documentation to README.
* README.org: Add function documentation.
-rw-r--r-- | README.org | 30 |
1 files changed, 30 insertions, 0 deletions
@@ -2,6 +2,36 @@ el-exiftool is an elisp wrapper around [[http://www.sno.phy.queensu.ca/~phil/exi editor. Exiftool supports reading and writing metadata in various formats including [[wikipedia:Exif][EXIF]], [[wikipedia:Extensible_Metadata_Platform][XMP]] and [[wikipedia:IPTC_Information_Interchange_Model][IPTC]]. +* Functions + +** (el-exiftool-read FILE TAG...) + +Read TAGs from FILE, and return an alist mapping tag names to +corresponding values. + +** (el-exiftool-write FILE (TAG . VALUE)...) + +Write tags to FILE. + +The metadata to be written is specified as (TAG . VALUE) pairs. + +** (el-exiftool-copy SOURCE DESTINATION) + +Copy tags from SOURCE file to DESTINATION file. + +** (el-exiftool-command &rest ARGS) + +Execute a command in the currently running exiftool process. +If there is no running exiftool process, a new one will be +created. ARGS are arguments of the command to be run, as provided +to the exiftool command line application. + +** (el-exiftool-run) + +Start an exiftool process if not already running. +If an exiftool process is already running, delete it, and create +a new one. Return the process object of the newly created +process. * License |