Skip to content

A Flutter plugin to resolve various camera utils.

License

Notifications You must be signed in to change notification settings

paqio/camera_utils

 
 

Repository files navigation

For help getting started with Flutter, view our online documentation.

Pub

camera_utils

Flutter plugin for capturing and picking image and videos and getting thumbnail from videos on the Android & iOS devices.

Implementation in Flutter

Simply add a dependency to you pubspec.yaml for camera_utils.

Then import the package in your dart file with

import 'package:camera_utils/camera_utils.dart';

Screenshots

Usages

  1. Capture Image

    // Capture image
    final path = await CameraUtils.captureImage;
  2. Pick Image

    // Pick image
    final path = await CameraUtils.pickImage;
  3. Capture Video

    // Capture video
    final path = await CameraUtils.captureVideo;
  4. Pick Video

    // Pick video
    final path = await CameraUtils.pickVideo;
  5. Thumbnail from Video

    // Pass the path and get thumbnail from video
    Future<String> thumbPath = CameraUtils.getThumbnail(path);
      thumbPath.then((path) {
        setState(() {
          _thumbPath = path;
          print(path);
        });
      });

About

A Flutter plugin to resolve various camera utils.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 50.8%
  • Dart 22.4%
  • Swift 19.3%
  • Ruby 6.6%
  • Objective-C 0.9%