Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have problem to display my Picture in TImage from my MySql database using Delphi.

I save picture to my database with this code and work Perfectly.

var
  AStream : TMemoryStream;

AStream := TMemoryStream.Create;
  try
    Image1.Picture.Graphic.SaveToStream(AStream);
    AStream.Position := 0;
    if ADODataSet1.Active then
    begin
      ADODataSet1.Edit;
      TBlobField(ADODataSet1.FieldByName('MyField')).LoadFromStream(AStream);
      ADODataSet1.Post;
    end;
  finally
    AStream.Free;
  end;

But, problem is when I want to retrieve that Pictures. I use this code but I can display only first image from my database. I uses this code on DBGrid event - OnDrawColumnCell. AND WHEN I USE THIS CODE I'M GETTING MESSAGE JPEG ERROR #42!

var
  AStream : TMemoryStream;
begin
  AStream := TMemoryStream.Create;
  try
    if ADODataSet1.Active then
    begin
      TBlobField(ADODataSet1.FieldByName('MyField')).SaveToStream(AStream);
      AStream.Position := 0;
      Image1.Picture.Graphic.LoadFromStream(AStream);
    end;
  finally
    AStream.Free;
  end;
end;

Can somebody show me how to Fix This Problem. Thank you.

share|improve this question
Do all rows in the dataset definitely contain images? – Andriy M Oct 2 '12 at 20:49
What type of field is 'MyField'? – Sertac Akyuz Oct 2 '12 at 22:52
FOR Andriy M - No, some row will be empty depends do I have picture from that contact or not, but I would like to put a default picture like "Question mark" in TImage for contacts whos dont have a picture. If I put that default picture in TImage everyone will have a picture save in database. – havsys Oct 3 '12 at 6:48
FOR Sertac Akyuz - Field 'MyField' is IMG(LONGBLOB) – havsys Oct 3 '12 at 6:49
As a useful diagnostic, you could throw in a call to: AStream.SaveToFile('c:\somepath\debug.jpg'); I'd put it right before the LoadFromSTream call. That'll show you whether or not you've got a valid image. – Chris Thornton Oct 10 '12 at 15:08

1 Answer

up vote 7 down vote accepted

JPEG error 42 is reported when the stream is truncated. For example, if you attempt to load a zero length file into a TJPEGImage then error 42 is the end result.

If some images display, but not all, then the most likely explanation is that the data is somehow not making the round-trip to the DB and back.

Check the size of the BLOB field when you write it out. Check that it tallies with the size of the file when you write it to a disk file. Check that the disk file is a valid JPEG. Then confirm that the BLOB field has the exact same length when you re-read it. Perhaps there's something wrong with your DB code and the stream is getting truncated.

So, the very first step here is to confirm that you can recover the exact same data that you originally put into the DB.

The only other thought I have is that the graphic in the image control is not always a JPEG. The code that you use to load the image, Image1.Picture.Graphic.LoadFromStream() assumes that the data is a JPEG. If you had saved something other than a JPEG then LoadFromStream() would fail.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.