Saving Array's to a single file ?

taximania

Well-Known Member
Licensed User
Longtime User
I'm reading an 84wide x 48height .bmp image into a series of bytes.
The data is read into an array(6,84) so far so good.

How can I save a series of arrays (image data) to a single file so that I can retreive each one randomly, not sequentially.

e.g. FileRead(c,array(),3)
4th image in the file.
 

taximania

Well-Known Member
Licensed User
Longtime User
Works a treat, 1 image to 1 file. Much faster than I thought it would be.
Reading and writing :)

Is it possible to save more than 1 single dimension array to the same file ?
I've checked the helpfiles and it doesn't look possible.


Just asking incase I misread things, cheers :)
 
Top