1 ;;; gnus-fun.el --- various frivolous extension functions to Gnus
3 ;; Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
5 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 3, or (at your option)
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
22 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
23 ;; Boston, MA 02110-1301, USA.
31 (unless (fboundp 'declare-function
) (defmacro declare-function
(&rest r
))))
41 (defvar gnus-face-properties-alist
)
43 (defcustom gnus-x-face-directory
(expand-file-name "x-faces" gnus-directory
)
44 "*Directory where X-Face PBM files are stored."
49 (defcustom gnus-convert-pbm-to-x-face-command
"pbmtoxbm %s | compface"
50 "Command for converting a PBM to an X-Face."
55 (defcustom gnus-convert-image-to-x-face-command
56 "convert -scale 48x48! %s xbm:- | xbm2xface.pl"
57 "Command for converting an image to an X-Face.
58 The command must take a image filename (use \"%s\") as input.
59 The output must be the Face header data on stdout in PNG format.
61 By default it takes a GIF filename and output the X-Face header data
65 :type
'(choice (const :tag
"giftopnm, netpbm (GIF input only)"
66 "giftopnm %s | ppmnorm | pnmscale -width 48 -height 48 | ppmtopgm | pgmtopbm | pbmtoxbm | compface")
68 "convert -scale 48x48! %s xbm:- | xbm2xface.pl")
71 (defcustom gnus-convert-image-to-face-command
72 "convert -scale 48x48! %s -colors %d png:-"
73 "Command for converting an image to a Face.
75 The command must take an image filename (first format argument
76 \"%s\") and the number of colors (second format argument: \"%d\")
77 as input. The output must be the Face header data on stdout in
81 :type
'(choice (const :tag
"djpeg, netpbm (JPG input only)"
82 "djpeg %s | ppmnorm | pnmscale -width 48 -height 48 | ppmquant %d | pnmtopng")
84 "convert -scale 48x48! %s -colors %d png:-")
87 (defun gnus-shell-command-to-string (command)
88 "Like `shell-command-to-string' except not mingling ERROR."
89 (with-output-to-string
90 (call-process shell-file-name nil
(list standard-output nil
)
91 nil shell-command-switch command
)))
93 (defun gnus-shell-command-on-region (start end command
)
94 "A simplified `shell-command-on-region'.
95 Output to the current buffer, replace text, and don't mingle error."
96 (call-process-region start end shell-file-name t
97 (list (current-buffer) nil
)
98 nil shell-command-switch command
))
101 (defun gnus-random-x-face ()
102 "Return X-Face header data chosen randomly from `gnus-x-face-directory'."
104 (when (file-exists-p gnus-x-face-directory
)
105 (let* ((files (directory-files gnus-x-face-directory t
"\\.pbm$"))
106 (file (nth (random (length files
)) files
)))
108 (gnus-shell-command-to-string
109 (format gnus-convert-pbm-to-x-face-command
110 (shell-quote-argument file
)))))))
112 (autoload 'message-goto-eoh
"message" nil t
)
115 (defun gnus-insert-random-x-face-header ()
116 "Insert a random X-Face header from `gnus-x-face-directory'."
118 (let ((data (gnus-random-x-face)))
122 (insert "X-Face: " data
)
124 "No face returned by `gnus-random-x-face'. Does %s/*.pbm exist?"
125 gnus-x-face-directory
)))))
128 (defun gnus-x-face-from-file (file)
129 "Insert an X-Face header based on an image file.
131 Depending on `gnus-convert-image-to-x-face-command' it may accept
132 different input formats."
133 (interactive "fImage file name: ")
134 (when (file-exists-p file
)
135 (gnus-shell-command-to-string
136 (format gnus-convert-image-to-x-face-command
137 (shell-quote-argument (expand-file-name file
))))))
140 (defun gnus-face-from-file (file)
141 "Return a Face header based on an image file.
143 Depending on `gnus-convert-image-to-face-command' it may accept
144 different input formats."
145 (interactive "fImage file name: ")
146 (when (file-exists-p file
)
150 (while (and (not done
)
153 (let ((coding-system-for-read 'binary
))
154 (gnus-shell-command-to-string
155 (format gnus-convert-image-to-face-command
156 (shell-quote-argument (expand-file-name file
))
158 (if (> (length attempt
) 726)
160 (setq quant
(- quant
(if (< quant
10) 1 2)))
161 (gnus-message 9 "Length %d; trying quant %d"
162 (length attempt
) quant
))
165 (mm-with-unibyte-buffer
170 (defun gnus-face-encode ()
172 (base64-encode-region (point-min) (point-max))
173 (goto-char (point-min))
174 (while (search-forward "\n" nil t
)
176 (goto-char (point-min))
177 (while (> (- (point-max) (point))
185 (defun gnus-convert-face-to-png (face)
186 "Convert FACE (which is base64-encoded) to a PNG.
187 The PNG is returned as a string."
188 (mm-with-unibyte-buffer
191 (base64-decode-region (point-min) (point-max)))
195 (defun gnus-convert-png-to-face (file)
196 "Convert FILE to a Face.
197 FILE should be a PNG file that's 48x48 and smaller than or equal to
199 (mm-with-unibyte-buffer
200 (insert-file-contents file
)
201 (when (> (buffer-size) 726)
202 (error "The file is %d bytes long, which is too long"
206 (defface gnus-x-face
'((t (:foreground
"black" :background
"white")))
207 "Face to show X-Face.
208 The colors from this face are used as the foreground and background
209 colors of the displayed X-Faces."
210 :group
'gnus-article-headers
)
212 (declare-function article-narrow-to-head
"gnus-art" ())
213 (declare-function gnus-article-goto-header
"gnus-art" (header))
214 (declare-function gnus-add-image
"gnus-art" (category image
))
215 (declare-function gnus-add-wash-type
"gnus-art" (type))
217 (defun gnus-display-x-face-in-from (data)
218 "Display the X-Face DATA in the From header."
221 (when (or (gnus-image-type-available-p 'xface
)
222 (and (gnus-image-type-available-p 'pbm
)
223 (setq pbm
(uncompface data
))))
226 (article-narrow-to-head)
227 (gnus-article-goto-header "from")
229 (insert "From: [no `from' set]\n")
234 (if (gnus-image-type-available-p 'xface
)
235 (apply 'gnus-create-image
(concat "X-Face: " data
) 'xface t
236 (cdr (assq 'xface gnus-face-properties-alist
)))
237 (apply 'gnus-create-image pbm
'pbm t
238 (cdr (assq 'pbm gnus-face-properties-alist
))))
240 (gnus-add-wash-type 'xface
))))))
242 (defun gnus-grab-cam-x-face ()
243 "Grab a picture off the camera and make it into an X-Face."
245 (shell-command "xawtv-remote snap ppm")
247 (while (null (setq file
(directory-files "/tftpboot/sparky/tmp"
250 (setq file
(car file
))
253 (format "pnmcut -left 110 -top 30 -width 144 -height 144 '%s' | ppmnorm 2>/dev/null | pnmscale -width 48 | ppmtopgm | pgmtopbm -threshold -value 0.92 | pbmtoxbm | compface"
260 (defun gnus-grab-cam-face ()
261 "Grab a picture off the camera and make it into an X-Face."
263 (shell-command "xawtv-remote snap ppm")
266 (while (null (setq file
(directory-files "/tftpboot/sparky/tmp"
269 (setq file
(car file
))
271 (format "pnmcut -left 110 -top 30 -width 144 -height 144 '%s' | pnmscale -width 48 -height 48 | ppmtopgm > /tmp/gnus.face.ppm"
273 (let ((gnus-convert-image-to-face-command
274 (format "cat '%%s' | ppmquant %%d | ppmchange %s | pnmtopng"
275 (gnus-fun-ppm-change-string))))
276 (setq result
(gnus-face-from-file "/tmp/gnus.face.ppm")))
278 ;;(delete-file "/tmp/gnus.face.ppm")
281 (defun gnus-fun-ppm-change-string ()
282 (let* ((possibilites '("%02x0000" "00%02x00" "0000%02x"
283 "%02x%02x00" "00%02x%02x" "%02x00%02x"))
284 (format (concat "'#%02x%02x%02x' '#"
285 (nth (random 6) possibilites
)
289 (push (format format i i i i i i
)
291 (mapconcat 'identity values
" ")))
295 ;; arch-tag: 9d000a69-15cc-4491-9dc0-4627484f50c1
296 ;;; gnus-fun.el ends here