lbx-ai / image_gallery_saver

flutter中用于保存图片到相册的Plugin

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

image_gallery_saver

Build Status pub package license

We use image_picker to selecte images from the Android and iOS image library, but it can't save image to gallery,this plugin can provide this feature.

Usage

To use this plugin, add image_gallery_saver as a dependency in your pubspec.yaml file.

iOS

Add the following keys to your Info.plist file, located in /ios/Runner/Info.plist:

  • NSPhotoLibraryAddUsageDescription - describe why your app needs permission for the photo library. This is called Privacy - Photo Library Additions Usage Description in the visual editor

Android

No configuration required - the plugin should work out of the box.

Example

import 'dart:typed_data';

import 'package:flutter/material.dart';
import 'package:image_gallery_saver/image_gallery_saver.dart';
import 'dart:ui' as ui;

void main() {
    runApp(new MaterialApp(
        home: new Scaffold(
        body: new Center(
            child: new RaisedButton(
                onPressed: _saved,
                child: new Text('Save image'),
                ),
            ),
        ),
    ));
}

_saved() async {
    ByteData bytes = await rootBundle.load('assets/flutter.png');
    final result = await ImageGallerySaver.save(byteData.buffer.asUint8List());
}

About

flutter中用于保存图片到相册的Plugin

License:MIT License


Languages

Language:Dart 33.0%Language:Kotlin 27.4%Language:Ruby 23.1%Language:Swift 13.0%Language:Objective-C 3.4%