Next Previous Up Top Contents Index

6.6 DUIM-Graphics Module

draw-image

Generic function

Summary

Draws the specified image at the specified position.

Signature

draw-image drawable image x y => ()
draw-image* drawable image point => ()

Arguments

drawable
An instance of type type-union(<sheet>, <medium>).

image
An instance of type <image>.

The following arguments are specific to draw-image.

x
An instance of type <real>.

y
An instance of type <real>.

The following argument is specific to draw-image*.

point
An instance of type <transform>.

Values

None.

Library

duim-graphics

Module

duim-graphics

Description

Draws image on drawable at (x,y).

The function draw-image* is identical to draw-image, except that it passes composite objects, rather than separate coordinates, in its arguments. You should be aware that using this function may lead to a loss of performance.

See also

draw-pixmap, page 425

draw-text, page 434


Functional Developer Library Reference: DUIM - 3 Dec 1998

Next Previous Up Top Contents Index