Thema
:
Delphi
JPG zu Bitmap
Einzelnen Beitrag anzeigen
qb-tim
Registriert seit: 3. Mär 2006
Ort: Deutschland
280 Beiträge
Delphi 6 Professional
#
3
Re: JPG zu Bitmap
11. Jun 2006, 15:54
Hier ist die Lösung:
zusammenfalten
·
markieren
Delphi-Quellcode:
function
DownloadJPGToBitmap(
const
URL
:
string
; ABitmap: TBitmap): Boolean;
var
idHttp: TIdHTTP;
ImgStream: TMemoryStream;
JpgImage: TJPEGImage;
begin
Result := False;
ImgStream := TMemoryStream.Create;
try
idHttp := TIdHTTP.Create(
nil
);
try
idHttp.Get(
URL
, ImgStream);
finally
idHttp.Free;
end
;
ImgStream.Position := 0;
JpgImage := TJPEGImage.Create;
try
JpgImage.LoadFromStream(ImgStream);
ABitmap.Assign(JpgImage);
finally
Result := True;
JpgImage.Free;
end
;
finally
ImgStream.Free;
end
;
end
;
Zitat
qb-tim
Öffentliches Profil ansehen
Mehr Beiträge von qb-tim finden