3

I want download image from URL and save in the Gallery.

This source works well on Android, but not iOS.

import RNFetchBlob from "rn-fetch-blob";


let imgUrl = 'https://static.scientificamerican.com/sciam/cache/file/EAF12335-B807-4021-9AC95BBA8BEE7C8D_source.jpg'

let newImgUri = imgUrl.lastIndexOf('/');
let imageName = imgUrl.substring(newImgUri);

let dirs = RNFetchBlob.fs.dirs;
let path = Platform.OS === 'ios' ? dirs['MainBundleDir'] + imageName : dirs.PictureDir + imageName;

 RNFetchBlob.config({
     fileCache: true,
     appendExt: 'png',
     indicator: true,
     IOSBackgroundTask: true,
     path: path,
     addAndroidDownloads: {
         useDownloadManager: true,
         notification: true,
         path: path,
         description: 'Image'
      },

     }).fetch("GET", imgUrl).then(res => { 
            console.log(res, 'end downloaded') 
   });

witch one Permissions I needs for iOS, to save Photo in the Gallery?

Gurbela
  • 1,184
  • 2
  • 16
  • 40
  • Similar: https://stackoverflow.com/questions/46581830/app-crash-on-cameraroll-savetocameraroll-in-ios-in-react-native – Oleg Oct 12 '19 at 15:16
  • I have added NSPhotoLibraryAddUsageDescription("Privacy - Photo Library Additions Usage Description") in info.plist but it's not works. – Gurbela Oct 12 '19 at 15:24
  • Do you want to save to dirs['MainBundleDir'],why not Platform.OS === 'ios' ? fs.dirs.DocumentDir : – Oleg Oct 12 '19 at 15:34
  • iOS not have dirs.PictureDir – Gurbela Oct 12 '19 at 15:39

2 Answers2

9

For iOS you there is no need to use fetch-blob and download it. you need to use CameraRoll from react-native and call saveToCameraRoll()

https://facebook.github.io/react-native/docs/cameraroll

import RNFetchBlob from "rn-fetch-blob";
import { CameraRoll, Platform } from "react-native";

let imgUrl = 'https://static.scientificamerican.com/sciam/cache/file/EAF12335-B807-4021-9AC95BBA8BEE7C8D_source.jpg'

let newImgUri = imgUrl.lastIndexOf('/');
let imageName = imgUrl.substring(newImgUri);

let dirs = RNFetchBlob.fs.dirs;
let path = Platform.OS === 'ios' ? dirs['MainBundleDir'] + imageName : dirs.PictureDir + imageName;

saveToGallery = () => {
  if (Platform.OS == 'android') {

    RNFetchBlob.config({
      fileCache: true,
      appendExt: 'png',
      indicator: true,
      IOSBackgroundTask: true,
      path: path,
      addAndroidDownloads: {
        useDownloadManager: true,
        notification: true,
        path: path,
        description: 'Image'
      },

    }).fetch("GET", imgUrl).then(res => {
      console.log(res, 'end downloaded')
    });
  } else {
    CameraRoll.saveToCameraRoll(imgUrl);
  }
}
Mohsin Riaz
  • 128
  • 6
  • 2
    The most recent version of CameraRoll has a function that's save instead of saveToCameraRoll – Luís Mestre Jun 16 '20 at 16:20
  • 2
    thank you for answer. its run. However, I have one problem, when continue saving proccess, app unexpected crash exit. After that, I found solution. You should add NSPhotoLibraryAddUsageDescription("Privacy - Photo Library Additions Usage Description") in info.plist. it is IOS 11 rule. – Burak Odabaş May 02 '21 at 09:40
4

You have to use camera roll.

  • npm install @react-native-community/cameraroll --save

  • react-native link @react-native-community/cameraroll

  • from:

    import { CameraRoll } from "react-native";

    to

    import CameraRoll from "@react-native-community/cameraroll";

Oleg
  • 3,580
  • 1
  • 7
  • 12