其他语言

位置:IT落伍者 >> 其他语言 >> 浏览文章

Delphi中把bmp图片转换成jpg图片


发布日期:2018年09月17日
 
Delphi中把bmp图片转换成jpg图片

//bmp图片转换成jpg图片

function fun_BmpToJpg(temp path: String; ACQ: Integer): Boolean; stdcall;

var

MyJpeg: TJpegImage;

Bmp: TBitmap;

begin

result := false;

if FileExists(temp) then

begin

Bmp:= TBitmapCreate;

MyJpeg:= TJpegImageCreate;

BmpLoadFromFile(temp);

MyJpegAssign(Bmp);

MyJpegCompressionQuality := ACQ;

MyJpegCompress;

MyJpegSaveToFile(Path);

MyJpegfree;

Bmpfree;

if FileExists(path) then

result := True;

end;

end;

该文章转载自网络大本营

上一篇:Delphi7中快速得到本机IP地址

下一篇:Delphi深度探索-CodeSite应用指南