From: Neil Roberts <bpeeluk@yahoo.co.uk>
To: bug-gnu-emacs@gnu.org
Subject: XBM images sometimes inverted on Windows
Date: Fri, 30 Nov 2007 12:42:26 +0000 [thread overview]
Message-ID: <20071130124226.GA28554@janet> (raw)
Hi,
I've noticed that when running Emacs under Windows, if you create an
XBM image where the :data keyword is set to a string containing the
actual bits of the bitmap then the foreground and background colours
are swapped. If you use the same image but set the :data keyword to an
XBM image string then the swapping does not occur. The swapping
doesn't occur either way under X. Is this a bug?
Please eval the following code snippet to demonstrate. Under X, both
smilies look the same, but under Windows the bottom smiley is
white-on-black, and the top smiley is black-on-white.
(defconst smiley-data '(#x00 #x00 #x24 #x00 #x00 #x24 #x18 #x00))
(defun smiley-from-xbm-data ()
;; Make an XBM image from the smiley data
(list 'image :type 'xbm :ascent 100 :data
(concat "#define smiley_width 8\n"
"#define smiley_height 8\n"
"static unsigned char smiley_bits[] = {\n"
" "
(mapconcat (lambda (byte) (format "0x%02x" byte))
smiley-data ", ")
" };")))
(defun smiley-from-xbm-bytes ()
;; Make an image using the bytes directly in a string
(list 'image :type 'xbm :ascent 100 :width 8 :height 8
:data (apply 'string smiley-data)))
(save-excursion
(set-buffer (get-buffer-create "*Smiley demo*"))
(erase-buffer)
(insert "Smiley created from XBM image: "
(propertize ":)" 'display (smiley-from-xbm-data)) "\n"
"Smiley created from the actual bytes: "
(propertize ":)" 'display (smiley-from-xbm-bytes)) "\n")
(pop-to-buffer (current-buffer)))
Thanks,
- Neil
next reply other threads:[~2007-11-30 12:42 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-11-30 12:42 Neil Roberts [this message]
2007-12-01 13:36 ` XBM images sometimes inverted on Windows Jason Rumney
2007-12-01 14:35 ` Neil Roberts
2007-12-01 14:41 ` Jason Rumney
2007-12-02 17:25 ` Jason Rumney
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20071130124226.GA28554@janet \
--to=bpeeluk@yahoo.co.uk \
--cc=bug-gnu-emacs@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.