在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
Delphi Timage 操作(图片判断、清空、类型) 1、Timage 介绍 1.1 介绍 TImage 组件的的使用,主要功能是显示图像、美化界面。TImage 组件经常和TPanel 组件结合使用,以TPanel 组件的边框来划分TImage 组件的边界。在Image 组件调用图片时,可以利用Picture 属性进行指定,也可以在程序中用Picture.LoadFromFile()方法进行调入。利用Picture.SaveToFile()方法可以将TImage 组件的当前显示内容保存为一个图像文件。 1.2 属性
2、操作 判断是否有图片: if Image1.Picture.Graphic=nil then showmessage('无图');
if Image1.Picture.Bitmap.Empty then showmessage('无图'); //只对bitmap图有效
清空图片: Image1.Picture.Graphic = nil; //清空
判断图片类型: Image1.Picture.Graphic is TBitmap //bmp
Image1.Picture.Graphic is TJPEGImage //jpg
加载和保存图片: Image1.Picture.LoadFromFile(const Filename:String); //打开图片
Image1.Picture.SaveToFile(const Filename:String); //保存图像
创建时间:2020.09.01 更新时间:2020.09.02
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论