Function: mh-face-to-png
mh-face-to-png is a byte-compiled function defined in mh-xface.el.gz.
Signature
(mh-face-to-png DATA)
Documentation
Convert base64 encoded DATA to png image.
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-xface.el.gz
(defun mh-face-to-png (data)
"Convert base64 encoded DATA to png image."
(with-temp-buffer
(if (fboundp 'set-buffer-multibyte)
(set-buffer-multibyte nil))
(insert data)
(ignore-errors (base64-decode-region (point-min) (point-max)))
(buffer-string)))