我想将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;