/camera_utils

A Flutter plugin to resolve various camera utils.

Primary LanguageJavaOtherNOASSERTION

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);
        });
      });