one of the options I would like to do is display a map of the world. It isn't a static map so a pre-generated bitmap won't work.
I'm thinking of defining a few small sprites (5x5 pixels) to represent the various landscape items (trees, mountains, grass, etc.) then placing them in a grid and using GetImage to generate the bitmap that can be displayed.
However, for a 100x100 map, I would need to make 10,000 sprites, do the GetImage, then delete them all. I think it will work (I haven't tried it) but it seems like there should be a better way, am I missing a command for something like this?
Mark