Home  >  Article  >  Backend Development  >  Mutual conversion between IStream and TStream_PHP tutorial

Mutual conversion between IStream and TStream_PHP tutorial

WBOY
WBOYOriginal
2016-07-21 15:50:23859browse


procedure TForm1.Button1Click(Sender: TObject);
var
memoStream,OleStream:TStream;
Stream : IStream;
begin
image1.Picture :=nil;
image2.Picture := nil;

//Show initial photo
image1.Picture.LoadFromFile('c:logo.bmp');
memoStream := TmemoryStream.Create;
try
//Save the photo as TmemoryStream
image1.Picture.Bitmap.SaveToStream(memoStream);
memoStream.Position:=0;

//Convert TmemoryStream to IStream
stream:=TStreamAdapter.Create(memoStream);

//Convert IStream to TOleStream ==TmemoryStream
OleStream:= TOleStream.Create(Stream);
image2.Picture.Bitmap.LoadFromStream( OleStream);
finally
memoStream.Free;
OleStream.Free;
end; /////////////////

uses

............. AxCtrls,ActiveX; //These two units must be added



http://www.bkjia.com/PHPjc/319330.html

www.bkjia.com

http: //www.bkjia.com/PHPjc/319330.htmlTechArticleprocedureTForm1.Button1Click(Sender:TObject); var memoStream,OleStream:TStream; Stream:IStream; begin image1.Picture :=nil; image2.Picture:=nil; //Display the initial photo image1.Picture....
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn