expo-image-cropper

1.0.9 • Public • Published

Allows user to crop image with given aspect ratio for react native using expo on Android and IOS - (Workaround for IOS always square images).

Installation

yarn add expo-image-cropper
or
npm i expo-image-cropper --save 

API

ImageEditor

isRequired if there is a * in the name field

name Proptypes Description
imageUri * string
fixedAspectRatio * number Expect => aspect ratio.
minimumCropDimensions (size) Expect => {width: number, height: number} [Default 100 X 100].
onEditingCancel * func void
onEditingComplete * func Returns image object (image object fields => uri, width, height).

Example

import ImageEditor from 'expo-image-cropper';

<ImageEditor
    imageUri={uri}
    fixedAspectRatio={2 / 3}
    minimumCropDimensions={{
        width: 50,
        height: 50,
    }}
    onEditingCancel={() => {
        console.log('onEditingCancel');
    }}
    onEditingComplete={(image) => {
        console.log(image);
    }}
/>

Contact

gmail: shmuelpick1999@gmail.com

Package Sidebar

Install

npm i expo-image-cropper

Weekly Downloads

44

Version

1.0.9

License

ISC

Unpacked Size

22.8 kB

Total Files

16

Last publish

Collaborators

  • shmuelpick