As noted above, you use the drawimage() call to directly draw an image into a screen or window rastport. void DrawImage( struct RastPort *rp, struct Image *image, long leftOffset, long topOffset ); The rp argument is a pointer to the rastport into which the image should be drawn. This RastPort may come from a Window or Screen structure. The image argument is a pointer to the list of image structures that are to be rendered. The list may contain a single Image structure. The leftOffset and topOffset arguments are the external component, or the base position, for this list of images. The leftedge and topedge values of each image structure are added to these values to determine the final position of each image. Images may also be indirectly drawn by attaching them to gadgets, menus or requesters when they are initialized.