--> Convert picture file type : bmp picture to jpg picture on delphi | Delphi Tips Trick

For Newbie

Thursday 3 November 2011

Convert picture file type : bmp picture to jpg picture on delphi

| Thursday 3 November 2011
bmp to jpeg delphi

this is is the source code to convert bmp picture tojpg picture on delphi



var

bmp:tbitmap;
jpg : Tjpegemage;


bmp:=tbitmap.create
jpg:=jpegimage.create

bmp.loadfromfile(file *.bmp)//choose from folder

jpg.assign(bmp);
end;

Related Posts

No comments: