Y
youyo2bb
Unregistered / Unconfirmed
GUEST, unregistred user!
我用MATROX-M2开发,有没有一个函数是可以把当前图象直接保存为BMP格式
我要实现的是把图象直接保存到一文件夹中再系列重命名以下为部分代码
if not DirectoryExists(CapDir) then
if not CreateDir(CapDir) then
raise Exception.Create(CapDir);
BmpFile := CapDir + Info.SOPInstanceUID + '.bmp';
saveOK := ???????? (bmpFile);
if not saveOK then begin
raise Exception.Create('ERROR');
Exit;
end;
问号处要用什么函数属性???
我要实现的是把图象直接保存到一文件夹中再系列重命名以下为部分代码
if not DirectoryExists(CapDir) then
if not CreateDir(CapDir) then
raise Exception.Create(CapDir);
BmpFile := CapDir + Info.SOPInstanceUID + '.bmp';
saveOK := ???????? (bmpFile);
if not saveOK then begin
raise Exception.Create('ERROR');
Exit;
end;
问号处要用什么函数属性???