Method
GdkPixbuf.Pixbuf.copy_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 |
int |
Source X coordinate within |
|
src_y |
int |
Source Y coordinate within |
|
width |
int |
Width of the area to copy. |
|
height |
int |
Height of the area to copy. |
|
dest_pixbuf |
GdkPixbuf |
Destination pixbuf. |
|
Ownership is not transferred to the callee | |
dest_x |
int |
X coordinate within |
|
dest_y |
int |
Y coordinate within |