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,