I found this function in the PHP library and am interested in learning some graphics:
int imagerectangle ( int im, int x1, int y1, int x2, int y2, int col)
imagerectangle() creates a rectangle of color col in image im starting at upper left coordinate x1, y1 and ending at bottom right coordinate x2, y2. 0, 0 is the top left corner of the image.
My question is, what is "im"?
Is this supposed to be some preexisting blank .gif or what to draw on?