In Delphi - the best way to store an image in the application?
In Delphi - the best way to store an image in the application?
Save captured image -
(the image is going to the rectangle and would like to save this in app. ie when you leave the app the image is engraved on it.)
TFrm_Principal.ActFotoLibDidFinishTaking(Image: TBitmap);
begin
// Save captured image...
rect_foto.Fill.Bitmap.Bitmap := Image;
Save captured image -
(the image is going to the rectangle and would like to save this in app. ie when you leave the app the image is engraved on it.)
TFrm_Principal.ActFotoLibDidFinishTaking(Image: TBitmap);
begin
// Save captured image...
rect_foto.Fill.Bitmap.Bitmap := Image;
What platform?
ReplyDeleteWhat kind of image - something you want to show as part of the application, or an image that your application captures?
Save captured image
ReplyDeleteLooks like fmx, right?
ReplyDeletenot
ReplyDeleteFill.Bitmap.Bitmap? I'm pretty sure I've not seen that on Vcl. But I'm probably mistaken, since I do little to nothing involving images. Still, it looks sooo fmx :)
ReplyDeleteie TForm on fmx has that
the image is going to the rectangle and would like to save this in app. ie when you leave the app the image is engraved on it
ReplyDelete