网上文摘 小说 Flash游戏 最近更新 下载排行 资源分类 下载指南
经典编程资源 精彩不容错过
设为首页
加入收藏
联系我们
当前位置:Delphi园地技巧文章网络通讯 → 下载JPG文件变成BMP格式
下载JPG文件变成BMP格式
日期:2006年11月1日 作者:Thomas Stutz 人气: 查看:[大字体 中字体 小字体]
uses Jpeg, IdBaseComponent, IdComponent, IdTCPConnection, IdTCPClient, IdHTTP;

{ .... }

function DownloadJPGToBitmap(const URL : string; ABitmap: TBitmap): Boolean;
var
  
idHttp: TIdHTTP;
  ImgStream: TMemoryStream;
  JpgImage: TJPEGImage;
begin
  
Result := False;
  ImgStream := TMemoryStream.Create;
  try
    
idHttp := TIdHTTP.Create(nil);
    try
      
idHttp.Get(URL, ImgStream);
    finally
      
idHttp.Free;
    end;
    ImgStream.Position := 0;
    JpgImage := TJPEGImage.Create;
    try
      
JpgImage.LoadFromStream(ImgStream);
      ABitmap.Assign(JpgImage);
    finally
      
Result := True;
      JpgImage.Free;
    end;
  finally
    
ImgStream.Free;
  end;
end;


// Example:
// Beispiel:

procedure TForm1.Button1Click(Sender: TObject);
begin
  
DownloadJPGToBitmap('http://www.sample.com/test.jpg', Image1.Picture.Bitmap);
end;

(出处:DelphiFans.com)

相关文章:
·大富翁离线数据库CHM格式截止日期:2005-03-31
·大富翁离线数据库CHM格式截止日期: 2005-03-31
·大富翁离线数据库CHM格式截止日期: 2005-03-31
·格式化字符串
·Cell组件/插件---实现报表复杂格式展现+统计功能新途径
·支票格式
 → 特别推荐
 → 热点TOP10
关于我们 | 广告服务 | 发布资源 | 联系站长 Copyright © 2002-2006 Delphi园地 All Rights Reserved