Hi
I have a large grid of images (7x5) that I have rotated, cropped and resampled images as I have loaded them into the grid.
I now want to double click on an image and display the original image in a separate dialog box in a TImageEnView component and without the cropping or rotation.
I figure that I need to get back to the original image that I loaded into the grid, and before I rotated and cropped it, so to that end I've tried both of the the following calls:
Image.CopyToIEBitmap(Image.SelectedImage,fmDialog.Image.IEBitmap);
fmDialog.Image.IEBitmap.Assign(Image.GetBitmap(Image.SelectedImage));
They both work fine but only return the image as displayed in the grid and not the original image. Is there anyway that I can get back the original "raw" image that I loaded into the grid?
Or is there maybe only a single copy of the image maintained in the grid, and once you change it you can't get get back to the original?
Bruce.