From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/80633 Path: news.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.gnus.general Subject: X-Face and icontopbm Date: Fri, 02 Dec 2011 13:00:33 +0900 Organization: Emacsen advocacy group Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: dough.gmane.org 1322799170 24980 80.91.229.12 (2 Dec 2011 04:12:50 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Fri, 2 Dec 2011 04:12:50 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M28915@lists.math.uh.edu Fri Dec 02 05:12:44 2011 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1RWKUN-0002sE-Eh for ding-account@gmane.org; Fri, 02 Dec 2011 05:12:43 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1RWKTQ-0003D7-4I; Thu, 01 Dec 2011 22:11:44 -0600 Original-Received: from mx1.math.uh.edu ([129.7.128.32]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1RWKHa-0003A5-PW for ding@lists.math.uh.edu; Thu, 01 Dec 2011 21:59:30 -0600 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.76) (envelope-from ) id 1RWKHZ-0002Mz-Dd for ding@lists.math.uh.edu; Thu, 01 Dec 2011 21:59:30 -0600 Original-Received: from orlando.hostforweb.net ([216.246.45.90]) by quimby.gnus.org with esmtp (Exim 4.72) (envelope-from ) id 1RWKHX-0004dL-Md for ding@gnus.org; Fri, 02 Dec 2011 04:59:27 +0100 Original-Received: from localhost ([127.0.0.1]:51580) by orlando.hostforweb.net with smtp (Exim 4.69) (envelope-from ) id 1RWKHV-0004Ps-Bf for ding@gnus.org; Thu, 01 Dec 2011 21:59:25 -0600 X-Face: #kKnN,xUnmKia.'[pp`;Omh}odZK)?7wQSl"4o04=EixTF+V[""w~iNbM9ZL+.b*_CxUmFk B#Fu[*?MZZH@IkN:!"\w%I_zt>[$nm7nQosZ<3eu;B:$Q_:p!',P.c0-_Cy[dz4oIpw0ESA^D*1Lw= L&i*6&( User-Agent: Gnus/5.110018 (No Gnus v0.18) Emacs/24.0.92 (i686-pc-cygwin) Cancel-Lock: sha1:4Vioz+nXP8a1gv8IAAvcyMxRCe0= X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - orlando.hostforweb.net X-AntiAbuse: Original Domain - gnus.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - jpl.org X-Source: X-Source-Args: X-Source-Dir: X-Spam-Score: -1.9 (-) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:80633 Archived-At: Hi, In the Gnus trunk and the Emacs trunk, I updated a header format that Gnus passes to the icontopbm program when displaying X-Face. That was: /* Width=48, Height=48 */ Now it is the same as what pbmtoicon returns: $ pbmmake 48 48| pbmtoicon| head -2 /* Format_version=1, Width=48, Height=48, Depth=1, Valid_bits_per_item=16 */ The most recent icontopbm[1] requires it: $ icontopbm --version icontopbm: Using libnetpbm from Netpbm Version: Netpbm 10.54.4 icontopbm: Compiled Sun, Jun 19, 2011 17:09:54 by user "Yaakov" icontopbm: BSD defined icontopbm: RGB_ENV='RGBDEF' icontopbm: RGBENV= 'RGBDEF' (env vbl is unset) $ echo '/* Width=1, Height=1 */ 0x0000'| icontopbm icontopbm: invalid sun icon file header: only 2 out of required 5 fields present $ echo '/* Format_version=1, Width=1, Height=1, Depth=1, Valid_bits_per_item=16 */ 0x0000'| icontopbm P4 1 1 I verified that's also ok for old ones (tested with Netpbm 10.35.58 of June 1 2009, and 10.47.25 of January 18 2011). Recently I updated Cygwin on the office PC and noticed this. [1] http://netpbm.sourceforge.net/doc/icontopbm.html