gdkDrawImage: gdkDrawImage

Description Usage Arguments Author(s)

View source: R/gdkFuncs.R

Description

Draws a GdkImage onto a drawable. The depth of the GdkImage must match the depth of the GdkDrawable.

Usage

1
2
gdkDrawImage(object, gc, image, xsrc, ysrc, xdest, ydest, width, 
    height)

Arguments

object

a GdkDrawable (a GdkWindow or a GdkPixmap).

gc

a GdkGC.

image

the GdkImage to draw.

xsrc

the left edge of the source rectangle within image.

ysrc

the top of the source rectangle within image.

xdest

the x coordinate of the destination within drawable.

ydest

the y coordinate of the destination within drawable.

width

the width of the area to be copied, or -1 to make the area extend to the right edge of image.

height

the height of the area to be copied, or -1 to make the area extend to the bottom edge of image.

Author(s)

Derived by RGtkGen from GTK+ documentation


RGtk2 documentation built on Oct. 14, 2021, 5:08 p.m.

Related to gdkDrawImage in RGtk2...