Q&A

  • 이미지를 임시메모리에 저장 했다가 불러쓰기
JPG 이미지를 임시로 저장하였다가 쓰려고 합니다.
그런데 계속 에러가 뜨는군요.
혹 어디가 잘못 되었는지 학인을 바랍니다.

   {임시로 저장}

   PhotoStream := TMemoryStream.Create;

   Image1.Picture.Graphic.SaveToStream(PhotoStream);

   {다시 쓰기}

   PhotoImage := TJpegImage.Create;

   PhotoImage.LoadFromStream(PhotoStream);

   Image1.Picture := nil;

   Image1.Picture.Assign(PhotoImage);
1  COMMENTS
  • Profile
    이중철 2004.04.01 19:10

       PhotoImage := TJpegImage.Create;

       PhotoStream.Postion := 0;  <= 이거 하나 추가해 보세요

       PhotoImage.LoadFromStream(PhotoStream);

    이만..