NAME
    EraseImage -- Erases an Image. (V36)
SYNOPSIS
    EraseImage( RPort, Image, LeftOffset, TopOffset )
                A0     A1     D0          D1
    VOID EraseImage( struct RastPort *, struct Image *, WORD, WORD );
FUNCTION
    Erases an Image.  For a normal Image structure, this will
    call the graphics function EraseRect() (clear using layer
    backfill, if any) for the Image box (LeftEdge/TopEdge/Width/Height).
    For custom image, the exact behavior is determined by the
    custom image class.
INPUTS
    RPort   - RastPort to erase a part of
    Image   - custom or standard image
    LeftOffset,RightOffset - pixel offsets of Image position
RESULT
    None.
EXAMPLE
NOTES
BUGS
SEE ALSO
    graphics.library/EraseRect().