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;

Comments

  1. What platform?
    What kind of image - something you want to show as part of the application, or an image that your application captures?

    ReplyDelete
  2. Fill.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 :)

    ie TForm on fmx has that

    ReplyDelete
  3. 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

Post a Comment