Function: image-type-available-p

image-type-available-p is an autoloaded and byte-compiled function defined in image.el.gz.

Signature

(image-type-available-p TYPE)

Documentation

Return t if image type TYPE is available.

Image types are symbols like xbm or jpeg.

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/image.el.gz
;;;###autoload
(defun image-type-available-p (type)
  "Return t if image type TYPE is available.
Image types are symbols like `xbm' or `jpeg'."
  (and (fboundp 'init-image-library)
       (init-image-library type)))