如何将dd.tif格式转换为dd.bmp?(100分)

W

waiber

Unregistered / Unconfirmed
GUEST, unregistred user!
如何将图像格式为dd.tif的图像转换为dd.bmp?
谢谢!
 
可以用控件啊,或者photoshop,acdsee另存为。bmp
 
把扩展名换成BMP
某些格式TIF可以
 
procedure _LoadTIFF(Bitmap:TBitmap;FileName:String;ModeA,ModeB:Integer);
var aTIFF:TTIFFFile;
begin
aTIFF:=TTIFFFile.Create;
aTIFF.LoadFromFile(dd.tif);
Bitmap.Assign(aTIFF.Bitmap);
bBitmap.SaveToFile(dd.bmp);
aTIFF.Free;
end;
 
顶部