gpt4 book ai didi

delphi - Delphi中如何从URL获取图像

转载 作者:行者123 更新时间:2023-12-03 14:35:43 27 4
gpt4 key购买 nike

我正在寻找任何代码示例,展示如何将图像从 URL 提取到 Delphi TImage 组件中。

谢谢

最佳答案

借助TMemoryStream和Indy组件。

uses
GIFImg;

procedure TForm1.btn1Click(Sender: TObject);
var
MS : TMemoryStream;
GIf: TGIFImage;
begin
MS := TMemoryStream.Create;
GIf := TGIFImage.Create;
try
IdHTTP1.get('http://www.google.com/intl/en_ALL/images/logo.gif',MS);
Ms.Seek(0,soFromBeginning);
Gif.LoadFromStream(MS);
img1.Picture.Assign(GIF);

finally
FreeAndNil(GIF);
FreeAndNil(MS);
end;
end;

关于delphi - Delphi中如何从URL获取图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1227646/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com