首页 > 学院 > 开发设计 > 正文

使用TImage浏览与保存网络图像

2019-11-18 18:16:50
字体:
来源:转载
供稿:网友

网络ID:wnhoo or sos_admin
网名:e梦缘
Mail:wnhoo@163.com
风花雪月 e梦情缘

http://delphi.ktop.com.tw/delphi.gif直接显示在timage中!

保存为文件,然后显示:

uses UrlMon ;
function DownLoadInternetFile(Source, Dest : String) : Boolean;
begin
  try
    Result := URLDownloadToFile(nil,PChar(Source),PChar(Dest),0,nil) = 0
  except
    Result := False;
  end;
end;

保存为Tsream,然后显示:
PRocedure TForm1.Button1Click(Sender: TObject);
var
    tm: TMemoryStream;
begin
    try
        tm := TMemoryStream.Create;
        IdHTTP1.Get('
http://delphi.ktop.com.tw/delphi.gif', tm);
        ShowMessage('OK');
    finally
tm.Free;
    end;
end;


上一篇:VCL中网格控件原理分析

下一篇:关于流的使用资料及相关实例

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表
学习交流
热门图片

新闻热点

疑难解答

图片精选

网友关注