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/obsolete/thumbs.el.gz
(defun thumbs-file-size (img)
  (let ((i (image-size
            (find-image `((:type ,(image-supported-file-p img) :file ,img)))
            t)))
    (concat (number-to-string (round (car i))) "x"
	    (number-to-string (round (cdr i))))))