(album-convert-image): Expand relative path in argument `file'; don't
[elisp/album.git] / album.el
1 ;;; album.el --- Photo album utility
2
3 ;; Copyright (C) 2005 MORIOKA Tomohiko
4
5 ;; Keywords: Photo, image, album, HTML, WWW
6
7 ;; This file is part of Album.
8
9 ;; Album is free software; you can redistribute it and/or modify it
10 ;; under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation; either version 2, or (at your option)
12 ;; any later version.
13
14 ;; Album is distributed in the hope that it will be useful, but
15 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 ;; General Public License for more details.
18
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22 ;; Boston, MA 02111-1307, USA.
23
24 ;;; Commentary:
25
26 ;; It requires `convert' and `identify' of ImageMagick.
27
28 ;;; Code:
29
30 (defun album-make-spec-by-width (width limit spec-name)
31   (when (> width limit)
32     (let ((percent (floor (/ (* limit 100.0) width))))
33       (vector percent spec-name
34               (/ (* width percent) 100.0)
35               (/ (* height percent) 100.0)))))
36
37 (defun album-make-spec-by-height (height limit spec-name)
38   (when (> height limit)
39     (let ((percent (floor (/ (* limit 100.0) height))))
40       (vector percent spec-name
41               (/ (* width percent) 100.0)
42               (/ (* height percent) 100.0)))))
43
44 (defun album-write-html (dest-dir
45                          prev-file file next-file
46                          prev-grade grade next-grade)
47   (with-temp-buffer
48     (insert
49      "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"
50             \"http://www.w3.org/TR/html4/loose.dtd\">\n")
51     (insert "<head>\n")
52     (insert (format "<title>%s</title>\n" file))
53     (insert "</head>\n")
54     (insert "<body>\n")
55     (insert (format "<h1>%s</h1>\n" file))
56
57     (if prev-file
58         (insert (format "<a href=\"%s.html\">" prev-file)))
59     (insert "[Previous]")
60     (if prev-file
61         (insert "</a>"))
62     (insert "\n")
63
64     (if next-file
65         (insert (format "<a href=\"%s.html\">" next-file)))
66     (insert "[Next]")
67     (if next-file
68         (insert "</a>"))
69     (insert "\n")
70
71     (if prev-grade
72         (insert (format "<a href=\"../%s/%s.html\">"
73                         prev-grade
74                         file)))
75     (insert "[Smaller]")
76     (if prev-grade
77         (insert "</a>"))
78     (insert "\n")
79
80     (if next-grade
81         (insert (format "<a href=\"../%s/%s.html\">"
82                         next-grade
83                         file)))
84     (insert "[Larger]")
85     (if next-grade
86         (insert "</a>"))
87     (insert "\n")
88
89     (insert "
90 <hr>
91 ")
92     (insert "<a href=\"")
93     (insert
94      (if next-grade
95           (format "../%s/%s.html" next-grade file)
96        (concat "../fullsize/" file ".jpg")))
97     (insert "\">")
98     (insert (format "<img alt=\"%s\" src=\"%s.jpg\">" file file))
99     (insert "</a>
100
101 <hr>
102
103 </body>
104 </html>
105 ")
106     (unless (file-exists-p
107              (expand-file-name (symbol-name grade) dest-dir))
108       (make-directory
109        (expand-file-name (symbol-name grade) dest-dir)))
110     (write-region (point-min)(point-max)
111                   (expand-file-name
112                    (concat file ".html")
113                    (expand-file-name (symbol-name grade)
114                                      dest-dir)))))
115
116 (defun album-convert-image (dest-dir prev-file file next-file)
117   (setq file (expand-file-name file))
118   (let* ((ret
119           (with-temp-buffer
120             (call-process "identify" nil t t file)
121             (goto-char (point-min))
122             (and (re-search-forward " \\([0-9]+\\)x\\([0-9]+\\) " nil t)
123                  (cons (string-to-number (match-string 1))
124                        (string-to-number (match-string 2))))))
125          (width (car ret))
126          (height (cdr ret))
127          prev-grade
128          rest dest)
129     (cond ((>= width height)
130            (when (setq ret (album-make-spec-by-width width 2048 'QXGA))
131              (setq dest (cons ret dest)))
132            (when (setq ret (album-make-spec-by-width width 1600 'UXGA))
133              (setq dest (cons ret dest)))
134            (when (setq ret (album-make-spec-by-width width 1400 'SXGA+))
135              (setq dest (cons ret dest)))
136            (when (setq ret (album-make-spec-by-width width 1280 'SXGA))
137              (setq dest (cons ret dest)))
138            (when (setq ret (album-make-spec-by-width width 1024 'XGA))
139              (setq dest (cons ret dest)))
140            (when (setq ret (album-make-spec-by-width width 800 'SVGA))
141              (setq dest (cons ret dest)))
142            (when (setq ret (album-make-spec-by-width width 640 'VGA))
143              (setq dest (cons ret dest)))
144            )
145           (t
146            (when (setq ret (album-make-spec-by-height height 1536 'QXGA))
147              (setq dest (cons ret dest)))
148            (when (setq ret (album-make-spec-by-height height 1200 'UXGA))
149              (setq dest (cons ret dest)))
150            (when (setq ret (album-make-spec-by-height height 1050 'SXGA+))
151              (setq dest (cons ret dest)))
152            (when (setq ret (album-make-spec-by-height height 960 'SXGA))
153              (setq dest (cons ret dest)))
154            (when (setq ret (album-make-spec-by-height height 768 'XGA))
155              (setq dest (cons ret dest)))
156            (when (setq ret (album-make-spec-by-height height 600 'SVGA))
157              (setq dest (cons ret dest)))
158            (when (setq ret (album-make-spec-by-height height 480 'VGA))
159              (setq dest (cons ret dest)))
160            ))
161     (setq rest dest)
162     (while rest
163       (setq spec (car rest))
164       (album-write-html dest-dir
165                             (if prev-file
166                                 (file-name-sans-extension
167                                  (file-name-nondirectory prev-file)))
168                             (file-name-sans-extension
169                              (file-name-nondirectory file))
170                             (if next-file
171                                 (file-name-sans-extension
172                                  (file-name-nondirectory next-file)))
173                             prev-grade
174                             (aref spec 1)
175                             (if (nth 1 rest)
176                                 (aref (nth 1 rest) 1)))
177       (call-process "convert" nil nil nil
178                     "-resize" (format "%d%%" (aref spec 0))
179                     file
180                     (expand-file-name
181                      (concat
182                       (file-name-sans-extension
183                        (file-name-nondirectory file)) ".jpg")
184                      (expand-file-name
185                       (symbol-name (aref spec 1))
186                       dest-dir)))
187       (setq prev-grade (aref spec 1))
188       (setq rest (cdr rest)))
189     (unless (file-exists-p
190              (expand-file-name "fullsize" dest-dir))
191       (make-directory
192        (expand-file-name "fullsize" dest-dir)))
193     (if (string= (downcase (file-name-extension file))
194                  "jpg")
195         (call-process "ln" nil nil nil
196                       "-f"
197                       file
198                       (expand-file-name "fullsize" dest-dir))
199       (call-process "convert" nil nil nil
200                     file
201                     (expand-file-name
202                      (concat
203                       (file-name-sans-extension
204                        (file-name-nondirectory file)) ".jpg")
205                      (expand-file-name "fullsize" dest-dir))))
206     dest))
207
208 (defun album-convert-images (dest-dir &rest source-images)
209   (if (and (consp (car source-images))
210            (null (cdr source-images)))
211       (setq source-images (car source-images)))
212   (let (file prev-file)
213     (while source-images
214       (setq file (car source-images))
215       (album-convert-image dest-dir
216                            prev-file file (nth 1 source-images))
217       (setq prev-file file
218             source-images (cdr source-images)))))
219
220 (defun album-convert-directory (dest-dir source-dir &rest patterns)
221   (let (files)
222     (if patterns
223         (dolist (pat patterns)
224           (setq files
225                 (append files
226                         (directory-files source-dir 'full pat))))
227       (setq files
228             (let (case-fold-search)
229               (directory-files
230                source-dir 'full
231                ".+\\.\\(tiff\\|jpg\\|JPG\\|jpeg\\|gif\\|png\\)$"))))
232     (album-convert-images dest-dir files)))
233
234
235 (provide 'album)
236
237 ;;; album.el ends here