;; (if (re-search-forward "^[ \t]*Timestamp: " nil t)
;; (buffer-substring (match-end 0)(point-at-eol)))))
+;;; for exif 0.6.9
+;; (defun exif-image-file-date-time-original (image-file)
+;; (with-temp-buffer
+;; (call-process "exif" nil t nil
+;; "-t" "DateTimeOriginal"
+;; (expand-file-name image-file))
+;; (goto-char (point-min))
+;; (if (re-search-forward "^[ \t]*Value: " nil t)
+;; (buffer-substring (match-end 0)(point-at-eol)))))
+
+;;; for exif 0.6.15
(defun exif-image-file-date-time-original (image-file)
(with-temp-buffer
(call-process "exif" nil t nil
- "-t" "DateTimeOriginal"
- (expand-file-name image-file))
+ "-x" (expand-file-name image-file))
(goto-char (point-min))
- (if (re-search-forward "^[ \t]*Value: " nil t)
- (buffer-substring (match-end 0)(point-at-eol)))))
+ (if (re-search-forward
+ "<Date_and_Time__original_>\\([^<>]+\\)</Date_and_Time__original_>"
+ nil t)
+ (match-string 1))))
;; (directory-files
;; "~/Pictures/iPhoto Library/Originals/2006/")
(when (and (not (string-match "^\\.+$" dir))
(setq dir (expand-file-name dir base-dir))
(file-directory-p dir)
- (setq ret (nth 5 (file-attributes dir)))
- (or (> (car ret)(car date-time))
- (and (= (car ret)(car date-time))
- (>= (nth 1 ret)(nth 1 date-time))))
+ ;; (setq ret (nth 5 (file-attributes dir)))
+ ;; (or (> (car ret)(car date-time))
+ ;; (and (= (car ret)(car date-time))
+ ;; (>= (nth 1 ret)(nth 1 date-time))))
(setq ret
(exif-image-file-date-time-original
(car