OK danke,probier das mal.
Habe aber schon ein problem beim Anzeigen eines Bildes.
Speichere das Bild so:
Delphi-Quellcode:
procedure TForm6.TakePhotoFromCameraAction1DidFinishTaking(Image: TBitmap);
begin
Image1.Bitmap.Assign(Image) ;
Image1.Bitmap.SaveToFile(TPath.Combine(TPath.GetDocumentsPath, 'myfile.jpg'));
end;
Und so möchte ich es wieder Anzeigen:
Delphi-Quellcode:
procedure TForm11.Button123Click(Sender: TObject);
begin
Image1.bitmap.LoadFromFile('myfile.jpg');
end;
Da kommt aber auf dem Smartphone die Fehlermeldung: Zugriffsverletzung bei Adresse 788526E8 beim Zugriff auf Adresse 0000000.
Was mach ich falsch?