JPG 이미지를 임시로 저장하였다가 쓰려고 합니다.
그런데 계속 에러가 뜨는군요.
혹 어디가 잘못 되었는지 학인을 바랍니다.
{임시로 저장}
PhotoStream := TMemoryStream.Create;
Image1.Picture.Graphic.SaveToStream(PhotoStream);
{다시 쓰기}
PhotoImage := TJpegImage.Create;
PhotoImage.LoadFromStream(PhotoStream);
Image1.Picture := nil;
Image1.Picture.Assign(PhotoImage);
PhotoImage := TJpegImage.Create;
PhotoStream.Postion := 0; <= 이거 하나 추가해 보세요
PhotoImage.LoadFromStream(PhotoStream);
이만..