我想使用ImageView
将Glide
中加载的图像与源名称或原始名称保存在名为MyData的文件夹中。我不知道怎么能这样做。
这是我在德尔菲用来保存图像的代码
if FileExists(Path) then
begin
IDHTTP1.Get(URL,MS);
MS.Seek(0,soBeginning);
Image1.Bitmap.LoadFromStream(MS);
if not TPlatformServices.Current.SupportsPlatformService(IFMXPhotoLibrary, Gallery) then
Exit;
Gallery.AddImageToSavedPhotosAlbum(Image1.Bitmap);
end;