我是靠谱客的博主 玩命乐曲,最近开发中收集的这篇文章主要介绍将bmp文件转换为jpg文件,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

procedure TForm1.Button1Click(Sender: TObject);
(*压缩MBP为JPEG;但是没有提供压缩比可选项
凑合用吧,大概1/3 ^_^:
Note:必须加上JPEG到Uses单元
*)
var
MyJPEG : TJPEGImage;
MyBMP : TBitmap;
begin
MyBMP := TBitmap.Create;
with MyBMP do
try
LoadFromFile('e:lm.BMP'); //你的图片位置
MyJPEG := TJPEGImage.Create;
with MyJPEG do begin
Assign(MyBMP);
CompressionQuality:=10; //压缩比例
Compress;
SaveToFile('e:lm01.JPEG');//保存路径……
Free;
end;
finally
Free;
end;
end;

 


 

By Luiz Vaz - luiz.vaz@arinso.com.br

function Bmp2Jpg(Bmp: TBitmap; Quality: Integer = 100): TJpegImage;

begin

  Result := nil;

  if Assigned(Bmp)

  then begin

  Result := TJpegImage.Create;

  Result.Assign(Bmp); {Its all folks...}

  Result.CompressionQuality := Quality;

  Result.JPEGNeeded; {Key method...}

  Result.Compress;

  end;

end;

 

function Jpg2Bmp(Jpg: TJpegImage): TBitmap;

begin

  Result := nil;

  if Assigned(Jpg)

  then begin

  Result := TBitmap.Create;

  Jpg.DIBNeeded; {Key method...}

  Result.Assign(Jpg); {Its all folks...}

  end;

end;

 

注意:JPEGNeeded过程转换并存储图像数据到内部的JPEG数据。我们无法直接存取JPEG 内部数据,因为D5并没有提供jpeg.pas单元的源码。但是可以通过JPEGNeeded和DIBNeeded过程来操作它。

 

转载于:https://www.cnblogs.com/yzryc/p/6373609.html

最后

以上就是玩命乐曲为你收集整理的将bmp文件转换为jpg文件的全部内容,希望文章能够帮你解决将bmp文件转换为jpg文件所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(84)

评论列表共有 0 条评论

立即
投稿
返回
顶部