Skip to content

Samoy/image_save

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

image_save

version platform starts

Save image to album, support Android and iOS.

Permission

  • Android

Add the following statement in AndroidManifest.xml:

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> 
  • iOS

Add the following statement in Info.plist

<key>NSPhotoLibraryUsageDescription</key> <string>Add the description of the permission you need here.</string> 

Usage

See Example

// Save to album. bool success = await ImageSave.saveImage(data, "demo.gif", albumName: "demo"); // Save to sandbox. // Notice: Image saved in this way will be deleted when the application is uninstalled. bool success = await ImageSave.saveImageToSandbox(data, "demo.gif"); // Get images from Sandbox. List<Uint8List> imageDatas = await ImageSave.getImagesFromSandbox(); 

About

Save image to album or sandbox

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors