Delphi存取图像完整解决方案
一 创建演示数据库
在SQL SERVER中新建一演示数据库 Demo 并创建一数据表Picture 结构如下
字段名 Data Type Identity Id Int Yes I *** mp Tinyint Myimage Image字段I *** mp是用来记录在Myimage中存入的图像的类型( 表JPEG 表BMP 其它值表无图像) I *** mp数据类型选用整型Tinyint而末选用逻辑bit型主要是考虑到如下方法仍适用于ACCESS数据库 在SQL中打开表Picture 添入几条记录 Myimage图像字段值暂不管 字段I *** mp值随便输入 和 之外的其它数 二 窗口设计
在DELPHI中新建一个工程 在FORM1上放置如表所示控件(考虑到TDBImage型控件不能正确显示JPEG型图像 所以选用Timage型控件显示所有类型图像)
组件类别 组件属性名 属性值 用途说明 Timage caption Image 显示图像 name Image Stretch True Tbutton caption 选择图像 选择图像 name selectimage Tbutton caption 保存图像 保存图像到数据库 name savetodb TADOConnection caption Adoconnection 创建与数据库demo的连接 name Adoconnection Connectionstring 见备注 Connected True Loginprompt False Tadotable Caption Adotable 建立与表Picture 的连接 name Adotable Connection Adoconnection Tablename Picture Active True Tdatasource Name Datasource 建立数据源 Dataset Adotable Topenpicturedialog Caption Openpicturedialog 选择图像文件 Name Openpicturedialog Tdbgrid Caption Dbgrid 显示记录 Name Dbgrid Datasource Datasource备注
adoconnection connectstring := Provider=SQLOLEDB ;Persist Security Info=False;User ID=sa;Initial Catalog=demo;Data Source=Mysqlserver Mysqlserver为SQL服务器的名称请据实际情况更改 三 程序代码(首先在单元文件接口部分的uses语句中添入JPEG单元引用)
图像数据的选择及保存procedure TForm selectimageClick(Sender: TObject); //选择图像beginif openpicturedialog Execute thenimage Picture LoadFromFile(openpicturedialog FileName );end;
procedure TForm savetodbClick(Sender: TObject); //保存图像varstrm:tmemorystream; ext:string;beginif image picture Graphic <> nil then //避免image 中无图像保存出错beginext:=extractfileext(openpicturedialog FileName ); //取出文件的扩展名strm := tmemorystream Create ;tryimage Picture Graphic SaveToStream(strm);adotable Edit ;strm Position := ; tblobfield(adotable FieldByName( myimage )) LoadFromStream(strm);//如需直接由文件保存可采用如下注释行//TBlobField(adotable FieldByName( myimage )) LoadFromFile(OpenPictureDialog FileName);//以下记录保存到数据库的图像格式if uppercase(ext) = BMP thenadotable FieldByName( i *** mp ) Value := //BMP型图像数据else if (uppercase(ext) = JPG ) OR ( uppercase(ext) = JPEG ) Thenadotable FieldByName( i *** mp ) Value := ; //JPEG型图像数据adotable Post ;finallystrm Free ; //笔者发现如strm采用tblobstream类 程序运行到该语句会出现问题end;end;end;
图像数据的读取及显示
从数据库图像字段中读取数据然后在Image 中把图像显示出来的程序代码 笔者先尝试在Datasource 的OnDataChange事件中来完成 但会出错 后改写在adotable 的afterscroll事件中顺利完成
procedure TForm adoTable AfterScroll(DataSet: TDataSet); //显示图像varstrm:tadoblobstream;jpegimage:tjpegimage;bitmap:tbitmap;beginstrm := tadoblobstream Create(tblobfield(adotable fieldbyname( MYIMAGE )) bmread);try //try strm position := ;image Picture Graphic := nil; //清除图像// BMP JPEG两种图像数据必需分别处理if adotable fieldbyname( i *** mp ) asstring = then //BMP型图像数据begin //begin bitmap := tbitmap Create ;try //try bitmap LoadFromStream(strm);image Picture Graphic := bitmap;finallybitmap Free;end; //end try end //end begin else if adotable fieldbyname( i *** mp ) asstring = then //JPEG型图像数据begin //begin jpegimage := tjpegimage Create ;try //try jpegimage LoadFromStream(strm);image Picture Graphic := jpegimage;finallyjpegimage Free ;end; //end try end; //end begin finallystrm Free ;end; //end try end;
如果你想将数据库中的图像导出到外部文件中可采用如下关键语句
image Picture SaveToFile(FileName );
以上程序代码不但适用于SQL数据库 而且完全适用于ACCESS数据库 但创建ACCESS数据库时应注意图像字段的数据类型应为OLE型 数据库创建完成之后再将Adoconnection 连接到该ACCESS数据库即可运行 欲知详细情况 请索取源程序 以上提供了DELPHI利用Tsteam类存取JPEG BMP图像到数据库的一种解决方案 笔者争取下文介绍DELPHI利用ASSIGN方法存取JPEG BMP图像到数据库的另一解决方案
以上程序代码在DELPHI +SQL(或ACCESS)数据库下运行通过
四 另一解决方案
在上文中 笔者提供了一种DELPHI存取JPEG BMP图像到数据库的解决方案 虽然它适用于ACCESS和SQL数据库 但它并不适用于所有数据库(比如PARADOX数据库中的GRAPHIC图像字段就不能采用该方法存取图像数据) 下文将介绍DELPHI利用ASSIGN方法存取JPEG BMP图像到数据库的另一解决方案来进行补充完善 演示数据库结构和窗口界面设计同前文 不再重述 将单元的相应程序代码作如下更换
图像数据的选择及保存
procedure Tform selectimageClick(Sender: TObject); //选择图像beginif openpicturedialog Execute thenimage Picture LoadFromFile(openpicturedialog FileName );end;procedure Tform savetodbClick(Sender: TObject); //保存图像到数据库varext:string;beginif image picture Graphic <> nil then //避免image 中无图像保存出错beginadotable Edit ;adotable FieldByName( myimage ) Assign(image Picture Graphic);//以下记录保存到数据库的图像格式ext:=extractfileext(openpicturedialog FileName ); //取出文件扩展名if uppercase(ext) = BMP THENadotable FieldByName( i *** mp ) VALUE := //BMP型图像数据ELSE IF (UPPERCASE(EXT) = JPEG ) OR (UPPERCASE(EXT) = JPG ) THENadotable FieldByName( i *** mp ) VALUE := ; //JPEG型图像数据ADOTABLE Post ;end;end;
图像数据的读取及显示
procedure Tform ADOTable AfterScroll(DataSet: TDataSet); //ADOTable 的AfterScroll事件方法程序 var jpegimage:tjpegimage; begin image Picture Graphic :=nil; //下边BMP JPEG两种图像数据必需分别处理 if adotable fieldbyname( i *** mp ) Asstring = then //BMP型图像数据 image Picture bitmap Assign(adotable fieldbyname( myimage )) //上边语句中的bitmap不能为graphic 否则会出错 else if adotable fieldbyname( i *** mp ) asstring = then //JPEG型图像数据 begin //begin jpegimage := tjpegimage Create ; //通过jpegimage将图像显示在image 否则会出错 try jpegimage Assign(adotable fieldbyname( myimage )); image Picture Graphic :=jpegimage; finally jpegimage Free ; end; //end try end; //end begin end;
注 别忘了在单元文件接口部分的uses语句中添入JPEG单元引用
lishixinzhi/Article/program/Delphi/201311/24918
2024-09-19 广告