Temporary storage of imagedata

2009-08-24 Thread Richard Miller
This is for a revlet application. I'm looking at various ways to temporarily store image snapshots before displaying them in a stack. The objective is to record several hundred screen shots (one per second), store them temporarily, then put the images into a new stack, one image per card, for

Re: Temporary storage of imagedata

2009-08-24 Thread Mark Smith
Richard, the imagedata will tend to be a lot bigger (maybe 10x) than the compressed image file, so you probably want to store the text of image someimage, and then set the text of image someimage to tStoredData[1]. The text of an image is what would be in the file - ie. the text of image

Re: Temporary storage of imagedata

2009-08-24 Thread Richard Miller
Mark, Thanks! Works perfect. Richard Mark Smith wrote: Richard, the imagedata will tend to be a lot bigger (maybe 10x) than the compressed image file, so you probably want to store the text of image someimage, and then set the text of image someimage to tStoredData[1]. The text of an