Hauptmenü
Home
Delphi
C# / .NET
Freepascal
Firebird
OPF
Tutorials
Tipps und Tricks
Links
Suche
Impressum
BMP in JPG umwandeln PDF E-Mail
Geschrieben von Lemmy   
Sonntag, 19. Februar 2006
uses JPEG;
...
procedure TForm1.Button1Click(Sender: TObject);
var
  bmp :TBitmap;
  jpg :TJPEGImage;
begin
  bmp:=TBitmap.Create;
  jpg:=TJPEGImage.Create;
  try
    jpg.Assign(bmp);
    jpg.SaveToFile('C:\Datei.jpg');
  finally
    jpg.Free;
    bmp.Free;
  end;
end;
 
< Zurück   Weiter >