void                gdk_pixbuf_scale                    (const GdkPixbuf *src,
                                                         GdkPixbuf *dest,
                                                         int dest_x,
                                                         int dest_y,
                                                         int dest_width,
                                                         int dest_height,
                                                         double offset_x,
                                                         double offset_y,
                                                         double scale_x,
                                                         double scale_y,
                                                         GdkInterpType interp_type);
src :	a GdkPixbuf
dest :	the GdkPixbuf into which to render the results
dest_x :	the left coordinate for region to render
dest_y :	the top coordinate for region to render
dest_width :	the width of the region to render
dest_height :	the height of the region to render
offset_x :	the offset in the X direction (currently rounded to an integer)
offset_y :	the offset in the Y direction (currently rounded to an integer)
scale_x :	the scale factor in the X direction
scale_y :	the scale factor in the Y direction
interp_type :	the interpolation type for the transformation.
			
		
 
	
Partager