aboutsummaryrefslogtreecommitdiff
path: root/el-exiftool.el
diff options
context:
space:
mode:
authorArun Isaac2017-02-23 00:49:21 +0530
committerArun Isaac2017-02-23 00:49:21 +0530
commitc18b8a0fd8953853864b69d4884bfc6da3ed0215 (patch)
tree16b73309af026565b459d8469b1936fa319abc14 /el-exiftool.el
parent7d42d9d2db950eaea8064238a99ac2c38faf43f9 (diff)
downloadexiftool.el-c18b8a0fd8953853864b69d4884bfc6da3ed0215.tar.gz
exiftool.el-c18b8a0fd8953853864b69d4884bfc6da3ed0215.tar.lz
exiftool.el-c18b8a0fd8953853864b69d4884bfc6da3ed0215.zip
Add headers and footers.
* el-exiftool.el: Add headers and footers as per emacs lisp coding conventions. * el-exiftool-tests.el: Add headers and footers as per emacs lisp coding conventions.
Diffstat (limited to 'el-exiftool.el')
-rw-r--r--el-exiftool.el19
1 files changed, 18 insertions, 1 deletions
diff --git a/el-exiftool.el b/el-exiftool.el
index 789269c..dd4081b 100644
--- a/el-exiftool.el
+++ b/el-exiftool.el
@@ -1,4 +1,11 @@
-;; -*- lexical-binding: t -*-
+;;; el-exiftool.el --- Elisp wrapper around exiftool ;; -*- lexical-binding: t -*-
+
+;; Elisp wrapper around exiftool
+;; Copyright (C) 2017 by Arun I
+;;
+;; Author: Arun I <arunisaac@systemreboot.net>
+;; Keywords: data
+;; Homepage: https://git.systemreboot.net/el-exiftool
;; This file is part of el-exiftool.
@@ -15,6 +22,14 @@
;; You should have received a copy of the GNU General Public License
;; along with el-exiftool. If not, see <http://www.gnu.org/licenses/>.
+;;; Commentary:
+;;
+;; el-exiftool is an elisp wrapper around exiftool. Exiftool supports
+;; reading and writing metadata in various formats including EXIF, XMP
+;; and IPTC.
+
+;;; Code:
+
(require 'subr-x)
(require 'cl)
@@ -89,3 +104,5 @@ The metadata to be written is specified as (TAG . VALUE) pairs.
(list file))))
(provide 'el-exiftool)
+
+;;; el-exiftool.el ends here