Function: image-at-point-p
image-at-point-p is an autoloaded and byte-compiled function defined
in image.el.gz.
Signature
(image-at-point-p)
Documentation
Return non-nil if there is an image at point.
Probably introduced at or before Emacs version 29.1.
Source Code
;; Defined in /usr/src/emacs/lisp/image.el.gz
;;;###autoload
(defun image-at-point-p ()
"Return non-nil if there is an image at point."
(condition-case nil
(prog1 t (image--get-image))
(error nil)))