Dennis Lee Bieber wrote: >> 2) i think putpixel((44, 55), (0, 0, 0)) and putpixel((44,55),0) is >> same. > > It shouldn't be... The former is three separate data values, the > latter is one. the "putpixel" API is polymorphic; you can use either tuples or integers for RGB pixels (the latter should have the form 0xAARRGGBB). </F>