images_picker 0.0.3 copy "images_picker: ^0.0.3" to clipboard
images_picker: ^0.0.3 copied to clipboard

outdated

Flutter plugin for selecting images/videos from the Android and iOS image library, and taking pictures/videos with the camera.

#images_picker

Flutter plugin for selecting images/videos from the Android and iOS image library, and taking pictures/videos with the camera

ios(10+): ZLPhotoBrowser

android(21+): PictureSelector

This plugin is learn from lisen87/image_pickers

Support #

  • pick multiple images/videos from photo album
  • use camera to take image/video
  • crop images with custom aspectRatio
  • compress images with quality/maxSize

Install #

For ios:

<key>NSCameraUsageDescription</key>
<string>Example usage description</string>
<key>NSMicrophoneUsageDescription</key>
<string>Example usage description</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>Example usage description</string>

For android:

<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.RECORD_AUDIO" />

And,

images_picker: ^newest
import "package:images_picker/images_picker.dart";

Usage #

  • simple picker image
Future getImage() async {
    List<Media> res = await ImagesPicker.pick(
      count: 3,
      pickType: PickType.image,
    );
// Media
// .path
// .thumbPath (path for video thumb)
// .size (kb)
}
  • simple open camera
ImagesPicker.openCamera(
  pickType: PickType.video,
  maxTime: 15, // record video max time
);
  • add gif support
ImagesPicker.pick(
  // ...
  gif: true, // default is true
);
  • add cropper (gif crop unsupported)
ImagesPicker.pick(
  // ...
  // when cropOpt isn't null, crop is enabled
  cropOpt: CropOption(
    aspectRatio: CropAspectRatio.custom,
    cropType: CropType.rect, // currently for android
  ),
);
  • add compress
ImagesPicker.pick(
  // ...
  // when maxSize/quality isn't null, compress is enabled
  quality: 0.8, // only for android
  maxSize: 500, // only for ios (kb)
);

All params #

// for pick
int count = 1,
PickType pickType = PickType.image,
bool gif = true,
CropOption cropOpt,
int maxSize,
double quality,

// for camera
PickType pickType = PickType.image,
int maxTime = 15,
CropOption cropOpt,
int maxSize,
double quality,

TODO LIST. #

  • save image/videos to Photo album
  • use custom themeColor

License #

MIT License

184
likes
0
pub points
96%
popularity

Publisher

verified publisherchavesgu.com

Flutter plugin for selecting images/videos from the Android and iOS image library, and taking pictures/videos with the camera.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on images_picker