I am using a TImage to display an image assigned at run time. I am using the "proportional" and "stretch" options depending what has been selected by the user. The changes are not made to the actual image, only to the way it is displayed. I want to save the image as it is displayed (after the effects have taken place). Can anyone please tell me how to do this?
var temp: TPicture; EditDisplay: TImage;
EditDisplay.Proportional:= True;
EditDisplay.Stretch:= False;
temp:= EditDisplay.picture; // <- here editdisplay gives me the unaffected image
var temp: TPicture; EditDisplay: TImage;
EditDisplay.Proportional:= True;
EditDisplay.Stretch:= False;
temp:= EditDisplay.picture; // <- here editdisplay gives me the unaffected image