public subroutine im_setpixel (long x1, long y1, integer red, integer green, integer blue)
Comment:
Set pixel color
Script:
public subroutine im_setpixel (long x1, long y1, integer red, integer green, integer blue);
/// requires x,y coordinates of pixel and the color
this.i_PBImage.IM_SetPixel(x1,y1, red, green, blue)
end subroutine