draw_bitmap
Entity: predicate

Usage:
draw_bitmap(X, Y, Bitmap, _, _)
draw_bitmap(X, Y, Bitmap, Xs, Ys) - this usage is not working at the moment

Draws a Bitmap image at a specified point (X, Y).

X              x co-ordinate of the point
Y              y co-ordinate of the point
Bitmap   a bitmap object
Xs              x co-ordinate of the new size - this is not working at the moment
Ys              y co-ordinate of the new size - this is not working at the moment
 

Examples:
?-
...
  Bitmap is bitmap_image("image.bmp", _),
  draw_bitmap( 10, 10, Bitmap, _, _).

See also:
bitmap_image