On this page:
render-image
image?

14 Image Core

 (require mrlib/image-core)

This library is the core part of the 2htdp/image library that DrRacket links into the namespace of all languages that it runs. This ensures that minimal support for these images are the same in all languages, specifically including support for printing the images and constructing the core data structures making up an image.

(render-image image dc dx dy)  void?
  image : image?
  dc : (is-a?/c dc<%>)
  dx : number?
  dy : number?
Draws image in dc at the position (dx,dy).

(image? v)  boolean?
  v : any/c
Recognizes the images that library handles.