kaum macht man es richtig, funktionierst
Delphi-Quellcode:
try
BlobStream := TMemoryStream.Create;
BlobStream.Write(eccPic.Data[0],eccPic.DataLength);
Blobstream.Position := 0;
Jpg := TJPEGImage.Create;
try
Jpg.LoadFromStream(BlobStream);
cxImage1.Picture.Assign(Jpg);
finally
Jpg.Free;
end;
finally
BlobStream.Free;
end;
wenn man Read und Write verwechselt, so wird das nichts
Danke für die Hilfe!