当前位置:主页>Delphi教程>文章内容
用delphi批量导入某子目录下所有JPG图片文件到数据库
来源: 作者: 发布时间:2007-04-29  
 

//保存图片到数据库
function imagesavetosql(dataset:TQuery;filename:String):boolean;
var
  imagejpg:TJPEGImage; //jpg图片
  MyStm:TMemoryStream;
begin
  result:=false;
  MyStm:=TMemoryStream.Create;
  imagejpg:=Tjpegimage.Create;
  if filename<>'' then
  begin
    imagejpg.LoadFromFile(filename);
    imagejpg.SaveToStream(MyStm);
    MyStm.Position:=0;
    TBlobField(dataset.FieldByName('pict')).LoadFromStream(MyStm); //不可与DMImage之类控件,因为其只支持BMP
    result:=true;
  end;
  MyStm.Free;
  imagejpg.free;
end;
//界面上添加TDirectoryListBox,TGauge控件
procedure Tfrmpict.BitBtn2Click(Sender: TObject);
var
  dirlist:TStringList;
  i:Integer;
begin
  inherited;
  if chk_road.Checked  then
  begin
    dirlist:=TStringList.Create ;
    dirlist.Clear;
    try
      GetAllFileName(DirectoryListBox1.Directory,dirlist);
      if dirlist.Count>0 then
      begin
      Gauge1.MinValue :=0;
      Gauge1.MaxValue:= dirlist.Count-1;
      for i:=0 to dirlist.Count-1 do
      begin
       with dm.qry_pict do
       begin
         Insert;
         Fields[0].AsString:=copy(dirlist.Strings[i],1,pos('.',dirlist.Strings[i])-1);
         if imagesavetosql(dm.qry_pict,dirlist.Strings[i] )=false then
         begin
         ShowMessage('导入'+dirlist.Strings[i]+'.jpg图片时出错');
         Abort;
         end;
         Post;
       end;  //with
       Gauge1.AddProgress(1);
      end;  //for
      end  //if
      else
      ShowMessage('该目录下不存在JPG类型图片');
     
    finally
      dirlist.Free;
    end;

  end
  else
     ShowMessage('请执行路径选取操作');

  //Close;
end;



 
上一篇:列出本机所有的Ip   下一篇:dbgrideh如何实现点击标题排序
 
  相关文章
·列出本机所有的Ip
·dbgrideh如何实现点击标题排序
·给DBGrid添加鼠标滚动事件
·delphi制作的托盘程序
·用Delphi编写论坛灌水机
·关于exe文件传递参数方法
·PB开发规范.doc
·DELPHI实现摄像头拍照
·Delphi程序设计规范
·DBGrid使用全书(二)
·控制台输出'颜色'字
·如何让程序出现windows标准对话框
 
【关闭窗口】
推荐本站资源
最新文章