Method
GdkPixbufPixbufcopy_area
Declaration [src]
void
gdk_pixbuf_copy_area (
  const GdkPixbuf* src_pixbuf,
  int src_x,
  int src_y,
  int width,
  int height,
  GdkPixbuf* dest_pixbuf,
  int dest_x,
  int dest_y
)
Description [src]
Copies a rectangular area from src_pixbuf to dest_pixbuf.
Conversion of pixbuf formats is done automatically.
If the source rectangle overlaps the destination rectangle on the same pixbuf, it will be overwritten during the copy operation. Therefore, you can not use this function to scroll a pixbuf.
Parameters
- src_x
- 
            Type: intSource X coordinate within src_pixbuf.
- src_y
- 
            Type: intSource Y coordinate within src_pixbuf.
- width
- 
            Type: intWidth of the area to copy. 
- height
- 
            Type: intHeight of the area to copy. 
- dest_pixbuf
- 
            Type: GdkPixbufDestination pixbuf. The data is owned by the caller of the method. 
- dest_x
- 
            Type: intX coordinate within dest_pixbuf.
- dest_y
- 
            Type: intY coordinate within dest_pixbuf.