Next: Q5.3.11, Previous: Q5.3.9, Up: Miscellaneous
Firstly there is an ftp site which describes X-faces and has the associated tools mentioned below, at ftp://ftp.cs.indiana.edu:/pub/faces/.
Then the steps are
cat file.xbm | xbm2ikon |compface > file.face
cat ./file.face | sed 's/\\/\\\\/g' | sed 's/\"/\\\"/g' > ./file.face.quoted
(setq mail-default-headers "X-Face: Ugly looking text string here")
Or, alternatively, as:
(defun mail-insert-x-face () (save-excursion (goto-char (point-min)) (search-forward mail-header-separator) (beginning-of-line) (insert "X-Face:") (insert-file-contents "~/.face"))) (add-hook 'mail-setup-hook 'mail-insert-x-face)
However, 2 things might be wrong:
Some versions of pbmtoicon produces some header lines that is not
expected by the version of compface that I grabbed. So I found I had to
include a tail +3
in the pipeline like this:
cat file.xbm | xbm2ikon | tail +3 |compface > file.face
Some people have also found that if one uses the (insert-file)
method, one should NOT quote the face string using the sed script .
It might also be helpful to use Stig’s script (included in the compface distribution at XEmacs.org) to do the conversion.
Contributors for this item:
Paul Emsley, Ricardo Marek, Amir J. Katz, Glen McCort, Heinz Uphoff, Peter Arius, Paul Harrison, and Vegard Vesterheim
Next: Q5.3.11, Previous: Q5.3.9, Up: Miscellaneous