本文整理自网络,侵删。
uses
jpeg;function TForm1.GetImage(url: string): boolean;
var
MemoryStream:TMemoryStream;
Idhttp:TIdhttp;
Img: TJPEGImage;
begin
MemoryStream:=TMemoryStream.Create ;
Idhttp:=Tidhttp.Create(nil);
Img := TJPEGImage.Create;
try
Idhttp.Get(url,MemoryStream);
MemoryStream.Position := 0;
Img.LoadFromStream(MemoryStream);
Image1.Picture.Bitmap.Assign(Img);
finally
MemoryStream.Free ;
Idhttp.Free;
Img.Free;
end;
end;
相关阅读 >>
Delphi sqlite incomplete input 错误
Delphi 获取随机字符串的方法 getrandomstring
Delphi adoquery连接数据库的查询、插入、删除、修改
Delphi 使用twebbrowser组件保存网页为html和mht文件
更多相关阅读请进入《Delphi》频道 >>