Function: thumbs-file-size
thumbs-file-size is a byte-compiled function defined in thumbs.el.gz.
Signature
(thumbs-file-size IMG)
Source Code
;; Defined in /usr/src/emacs/lisp/thumbs.el.gz
(defun thumbs-file-size (img)
(let ((i (image-size
(find-image `((:type ,(thumbs-image-type img) :file ,img))) t)))
(concat (number-to-string (round (car i))) "x"
(number-to-string (round (cdr i))))))