diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-10-01 15:34:20 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-10-01 15:34:20 +0000 |
commit | 8fa8286f123144d52f146937ab2dbc090dcbb9fc (patch) | |
tree | a0595b54a6a1c97342f51dc43f69feb5e95fdfb2 /w3mimg | |
parent | [w3m-dev 03331] Re: hang up when seeing web page that contains xbm file (diff) | |
download | w3m-8fa8286f123144d52f146937ab2dbc090dcbb9fc.tar.gz w3m-8fa8286f123144d52f146937ab2dbc090dcbb9fc.zip |
[w3m-dev 03332] Re: hang up when seeing web page that contains xbm file
* w3mimg/x11/x11_w3mimg.c (x11_load_image): transparent support
From: Yuji Abe <cbo46560@pop12.odn.ne.jp>
Diffstat (limited to 'w3mimg')
-rw-r--r-- | w3mimg/x11/x11_w3mimg.c | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/w3mimg/x11/x11_w3mimg.c b/w3mimg/x11/x11_w3mimg.c index 6741771..29aa55d 100644 --- a/w3mimg/x11/x11_w3mimg.c +++ b/w3mimg/x11/x11_w3mimg.c @@ -1,4 +1,4 @@ -/* $Id: x11_w3mimg.c,v 1.8 2002/09/30 17:44:30 ukai Exp $ */ +/* $Id: x11_w3mimg.c,v 1.9 2002/10/01 15:34:20 ukai Exp $ */ #include <stdio.h> #include <stdlib.h> #include <ctype.h> @@ -194,13 +194,17 @@ x11_load_image(w3mimg_op * self, W3MImage * img, char *fname, int w, int h) if (w != iw || h != ih) { GdkPixbuf *newpixbuf; newpixbuf = gdk_pixbuf_scale_simple(pixbuf, w, h, GDK_INTERP_BILINEAR); - gdk_pixbuf_xlib_render_to_drawable(newpixbuf, (Drawable) img->pixmap, - xi->imageGC, 0, 0, 0, 0, w, h, + gdk_pixbuf_xlib_render_to_drawable_alpha(newpixbuf, + (Drawable) img->pixmap, + 0, 0, 0, 0, w, h, + GDK_PIXBUF_ALPHA_BILEVEL, 1, XLIB_RGB_DITHER_NORMAL, 0, 0); gdk_pixbuf_finalize(newpixbuf); } else { - gdk_pixbuf_xlib_render_to_drawable(pixbuf, (Drawable) img->pixmap, - xi->imageGC, 0, 0, 0, 0, w, h, + gdk_pixbuf_xlib_render_to_drawable_alpha(pixbuf, + (Drawable) img->pixmap, + 0, 0, 0, 0, w, h, + GDK_PIXBUF_ALPHA_BILEVEL, 1, XLIB_RGB_DITHER_NORMAL, 0, 0); } gdk_pixbuf_unref(pixbuf); |