diff options
author | Alan Third <alan@idiocy.org> | 2023-09-11 19:58:14 +0100 |
---|---|---|
committer | Alan Third <alan@idiocy.org> | 2023-09-13 20:19:44 +0100 |
commit | 6cc6455e931913e42ef844c4a7d6ddcd0bf53788 (patch) | |
tree | 5a32100fd6fcb6fb15c17b0501b05c3517573be4 /src/image.c | |
parent | 9396d73942e0c912d978c25f9883e51668d33255 (diff) | |
download | emacs-6cc6455e931913e42ef844c4a7d6ddcd0bf53788.tar.gz emacs-6cc6455e931913e42ef844c4a7d6ddcd0bf53788.tar.bz2 emacs-6cc6455e931913e42ef844c4a7d6ddcd0bf53788.zip |
Fix SVG colors (bug#56182)
* src/image.c (svg_load_image): Reverse the R and B bytes in the
Windows colors before using them to generate the SVG.
Diffstat (limited to 'src/image.c')
-rw-r--r-- | src/image.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/image.c b/src/image.c index 8ee802a9d62..c717ac88dca 100644 --- a/src/image.c +++ b/src/image.c @@ -11423,6 +11423,18 @@ svg_load_image (struct frame *f, struct image *img, char *contents, img->background_valid = 1; } +#if HAVE_NTGUI + /* Windows stores the image colours in BGR format, and SVG expects + them in RGB. */ + foreground = (foreground & 0x0000FF) << 16 + | (foreground & 0xFF0000) >> 16 + | (foreground & 0x00FF00); + + background = (background & 0x0000FF) << 16 + | (background & 0xFF0000) >> 16 + | (background & 0x00FF00); +#endif + wrapped_contents = xmalloc (buffer_size); if (buffer_size <= snprintf (wrapped_contents, buffer_size, wrapper, |