Hello, I have an Array ..
Array(1 to 50, 1 to 50)
each array is a number such as 1 2 3 4


the numbers refer to an icon in an imagelist.

is there a way i can sort of CREATE an image file (such as BMP or JPG) using this array

such as it will save a file like this:

Array(1,1)Array(2,1)Array(3,1)Array(4,1)
Array(1,2)Array(2,2)Array(3,2)Array(4,2)
Array(1,3)Array(2,3)Array(3,3)Array(4,3)

where each array piece is an image
that would save to a BMP or JPG file with
4x3 tiles..

Is there a way to do this? or do i *HAVE* to post it to a picturebox ,then save that?

thanks..