Skip to content

A Flutter plugin that resizes images from native API, while keeping important EXIF attributes.

License

Notifications You must be signed in to change notification settings

djamoapp/image_native_resizer

 
 

Repository files navigation

image_native_resizer

pub package

A Flutter plugin that resizes images from native API, while keeping important EXIF attributes.

Installation

First, add image_native_resizer as a dependency in your pubspec.yaml file.

Quickstart

import 'package:image_native_resizer/image_native_resizer.dart';

final localImagePath = /*** ***/;
final resizedPath = await ImageNativeResizer.resize(
    imagePath: localImagePath,
    maxWidth: 512,
    maxHeight: 512,
    quality: 50,
);

Inspired by image_picker

This plugin is almost identitical to the official image_picker plugin. Serveral internal files from the plugin are used to implement the resizing logic, this plugin is just exposing them through a platform channel.

About

A Flutter plugin that resizes images from native API, while keeping important EXIF attributes.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages

  • Objective-C 41.5%
  • Java 38.1%
  • Dart 12.2%
  • Ruby 8.2%