mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-20 02:10:12 +00:00
518f32d97e
2000-10-06 Havoc Pennington <hp@redhat.com> * Makefile.am (SRC_SUBDIRS): contrib subdir * gdk/gdkpixbuf.h: Move GdkPixbufAlphaMode to gdk-pixbuf library, so it can be used in Xlib version * demos/testpixbuf.c (update_timeout): error checking from 1.0 tree * gtk/gdk-pixbuf-loader.c (gdk_pixbuf_loader_get_pixbuf): Sync change from 1.0 tree that returns first frame of animation if the loaded file is an animation. * contrib: add new directory to hold stuff that comes with GTK+ but isn't really part of GTK+ (for now, gdk-pixbuf-xlib) * configure.in: add contrib/* 2000-10-06 Havoc Pennington <hp@redhat.com> * gdk-pixbuf.h: add GdkPixbufAlphaMode 2000-10-06 Havoc Pennington <hp@redhat.com> This entry is a summary of the merged-in changes from 1.0. Relevant original ChangeLog entries are spliced in after this entry; the files they refer to are from the 1.0 gdk-pixbuf sources. * pixops/pixops.c (pixops_composite_nearest): sync a small fix from 1.0 * io-xpm.c (xpm_seek_string): add fscanf error check from 1.0 Add progressive loader from 1.0 * io-tiff.c (gdk_pixbuf__tiff_image_begin_load): mem leak fixes from 1.0 tree * io-pnm.c: new version from 1.0 tree * io-jpeg.c (gdk_pixbuf__jpeg_image_load): sync from 1.0, use malloc not g_malloc * io-gif.c (lzw_read_byte): sync from 1.0, change a g_error to g_warning (gif_get_next_step): return 0 here, sync from 1.0 * gdk-pixbuf-util.c: sync email address change for Cody Russell 2000-09-11 Jeffrey Stedfast <fejj@helixcode.com> * gdk-pixbuf/io-pnm.c: Pretty much totally rewrote again because last nights code was still "broken". Should now properly handle all error conditions gracefully. 2000-09-10 Jeffrey Stedfast <fejj@helixcode.com> * gdk-pixbuf/io-pnm.c: Rewrote. 2000-09-09 Federico Mena Quintero <federico@helixcode.com> * gdk-pixbuf/pixops/pixops.c (pixops_composite_nearest): Compute the correct dest offset. 2000-08-25 Federico Mena Quintero <federico@helixcode.com> * gdk-pixbuf/io-xpm.c: #include <unistd.h> 2000-08-05 Larry Ewing <lewing@helixcode.com> * gdk-pixbuf/io-tiff.c: stop leaking context->tempname. * gdk-pixbuf/io-xpm.c: same as above. 2000-07-26 Michael Meeks <michael@helixcode.com> * gdk-pixbuf/io-jpeg.c (gdk_pixbuf__jpeg_image_load): make g_malloc a malloc. 2000-07-21 Larry Ewing <lewing@helixcode.com> * gdk-pixbuf/io-xpm.c: add a fake progressive loader so that xpm at least supports the progressive interface like the one in io-tiff.c. This should be reimplemented as an actual progressive loader. 2000-07-19 Jonathan Blandford <jrb@redhat.com> * demo/pixbuf-demo.c (update_timeout): changed scaling level to make it look better. * gdk-pixbuf/testpixbuf.c (update_timeout): Patch from michael meeks to handle errors better.
195 lines
5.1 KiB
Plaintext
195 lines
5.1 KiB
Plaintext
<!-- ##### SECTION Title ##### -->
|
|
Scaling
|
|
|
|
<!-- ##### SECTION Short_Description ##### -->
|
|
Scaling pixbufs and scaling and compositing pixbufs
|
|
|
|
<!-- ##### SECTION Long_Description ##### -->
|
|
<para>
|
|
The &gdk-pixbuf; contains functions to scale pixbufs, to scale
|
|
pixbufs and composite against an existing image, and to scale
|
|
pixbufs and composite against a solid color or checkerboard.
|
|
Compositing a checkerboard is a common way to show an image with
|
|
an alpha channel in image-viewing and editing software.
|
|
</para>
|
|
|
|
<para>
|
|
Since the full-featured functions (gdk_pixbuf_scale(),
|
|
gdk_pixbuf_composite(), and gdk_pixbuf_composite_color()) are
|
|
rather complex to use and have many arguments, two simple
|
|
convenience functions are provided, gdk_pixbuf_scale_simple() and
|
|
gdk_pixbuf_composite_color_simple() which create a new pixbuf of a
|
|
given size, scale an original image to fit, and then return the
|
|
new pixmap.
|
|
</para>
|
|
|
|
<para>
|
|
The following example demonstrates handling an expose event by
|
|
rendering the appropriate area of a source image (which is scaled
|
|
to fit the widget) onto the widget's window. The source image is
|
|
rendered against a checkerboard, which provides a visual
|
|
representation of the alpha channel if the image has one. If the
|
|
image doesn't have an alpha channel, calling
|
|
gdk_pixbuf_composite_color() function has exactly the same effect
|
|
as calling gdk_pixbuf_scale().
|
|
</para>
|
|
|
|
<programlisting>
|
|
gboolean
|
|
expose_cb (GtkWidget *widget, GdkEventExpose *event, gpointer data)
|
|
{
|
|
GdkPixbuf *dest;
|
|
|
|
gdk_window_set_back_pixmap (widget->window, NULL, FALSE);
|
|
|
|
dest = gdk_pixbuf_new (GDK_COLORSPACE_RGB, FALSE, 8, event->area.width, event->area.height);
|
|
|
|
gdk_pixbuf_composite_color (pixbuf, dest,
|
|
0, 0, event->area.width, event->area.height,
|
|
-event->area.x, -event->area.y,
|
|
(double) widget->allocation.width / gdk_pixbuf_get_width (pixbuf),
|
|
(double) widget->allocation.height / gdk_pixbuf_get_height (pixbuf),
|
|
GDK_INTERP_BILINEAR, 255,
|
|
event->area.x, event->area.y, 16, 0xaaaaaa, 0x555555);
|
|
|
|
gdk_pixbuf_render_to_drawable (dest, widget->window, widget->style->fg_gc[GTK_STATE_NORMAL],
|
|
0, 0, event->area.x, event->area.y,
|
|
event->area.width, event->area.height,
|
|
GDK_RGB_DITHER_NORMAL, event->area.x, event->area.y);
|
|
|
|
gdk_pixbuf_unref (dest);
|
|
|
|
return TRUE;
|
|
}
|
|
</programlisting>
|
|
|
|
<!-- ##### SECTION See_Also ##### -->
|
|
<para>
|
|
GdkRGB
|
|
</para>
|
|
|
|
<!-- ##### ENUM GdkInterpType ##### -->
|
|
<para>
|
|
This enumeration describes the different interpolation modes that
|
|
can be used with the scaling functions.
|
|
|
|
<note>
|
|
<para>
|
|
Cubic filtering is missing from the list; hyperbolic
|
|
interpolation is just as fast and results in higher quality.
|
|
</para>
|
|
</note>
|
|
</para>
|
|
|
|
@GDK_INTERP_NEAREST: Nearest neighbor sampling; this is the fastest
|
|
and lowest quality mode.
|
|
@GDK_INTERP_TILES: This is an accurate simulation of the PostScript
|
|
image operator without any interpolation enabled. Each pixel is
|
|
rendered as a tiny parallelogram of solid color, the edges of which
|
|
are implemented with antialiasing. It resembles nearest neighbor for
|
|
enlargement, and bilinear for reduction.
|
|
@GDK_INTERP_BILINEAR: Bilinear interpolation. For enlargement, it is
|
|
equivalent to point-sampling the ideal bilinear-interpolated image.
|
|
For reduction, it is equivalent to laying down small tiles and
|
|
integrating over the coverage area.
|
|
@GDK_INTERP_HYPER: This is the slowest and highest quality
|
|
reconstruction function. It is derived from the hyperbolic filters in
|
|
Wolberg's "Digital Image Warping", and is formally defined as the
|
|
hyperbolic-filter sampling the ideal hyperbolic-filter interpolated
|
|
image (the filter is designed to be idempotent for 1:1 pixel mapping).
|
|
|
|
<!-- ##### FUNCTION gdk_pixbuf_scale ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
@src:
|
|
@dest:
|
|
@dest_x:
|
|
@dest_y:
|
|
@dest_width:
|
|
@dest_height:
|
|
@offset_x:
|
|
@offset_y:
|
|
@scale_x:
|
|
@scale_y:
|
|
@interp_type:
|
|
|
|
|
|
<!-- ##### FUNCTION gdk_pixbuf_composite ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
@src:
|
|
@dest:
|
|
@dest_x:
|
|
@dest_y:
|
|
@dest_width:
|
|
@dest_height:
|
|
@offset_x:
|
|
@offset_y:
|
|
@scale_x:
|
|
@scale_y:
|
|
@interp_type:
|
|
@overall_alpha:
|
|
|
|
|
|
<!-- ##### FUNCTION gdk_pixbuf_composite_color ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
@src:
|
|
@dest:
|
|
@dest_x:
|
|
@dest_y:
|
|
@dest_width:
|
|
@dest_height:
|
|
@offset_x:
|
|
@offset_y:
|
|
@scale_x:
|
|
@scale_y:
|
|
@interp_type:
|
|
@overall_alpha:
|
|
@check_x:
|
|
@check_y:
|
|
@check_size:
|
|
@color1:
|
|
@color2:
|
|
|
|
|
|
<!-- ##### FUNCTION gdk_pixbuf_scale_simple ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
@src:
|
|
@dest_width:
|
|
@dest_height:
|
|
@interp_type:
|
|
@Returns:
|
|
|
|
|
|
<!-- ##### FUNCTION gdk_pixbuf_composite_color_simple ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
@src:
|
|
@dest_width:
|
|
@dest_height:
|
|
@interp_type:
|
|
@overall_alpha:
|
|
@check_size:
|
|
@color1:
|
|
@color2:
|
|
@Returns: <!--
|
|
Local variables:
|
|
mode: sgml
|
|
sgml-parent-document: ("../gdk-pixbuf.sgml" "book" "refsect2" "")
|
|
End:
|
|
-->
|
|
|
|
|