Skip to content

Resource-2/Image-Cropping-NPM

 
 

Repository files navigation

multiple-image-crop-react

Table of Contents

  1. Features
  2. Installation
  3. Usage
  4. Example
  5. Props

Features

  • Responsive (you can use pixels or percentages).
  • Free-form or fixed aspect crops.
  • No dependencies/small footprint .
  • Min/max crop size.
  • Crop multiple images.

Installation

npm i multiple-image-crop-react
yarn add multiple-image-crop-react
pnpm add multiple-image-crop-react

This library works with all modern browsers. It does not work with IE.

Usage

Include the main js module:

import MultipleImageCropping from 'multiple-image-crop-react';

Once installed, you can use the MultipleImageCropping component in your React application. Import the component and include it in your JSX. You need to provide callback functions to handle the cropped images and any cancellation events.

Here’s a basic example of how to use the component:

Example

import React from 'react';
import MultipleImageCropping from 'multiple-image-crop-react';

const App = () => {
  // This function is called when the user completes cropping the images.
  // It receives an array of cropped image objects as its parameter.
  const handleImageCrop = (croppedImages) => {
    // Process the array of cropped images here
    console.log(croppedImages);
  };

  // This function is called if the user cancels the cropping process.
  // It can be used to handle or clear images as needed.
  const handleCancle = (clearImage) => {
    console.log('Image cropping cancelled:', clearImage);
  };

  return (
    <div>
      <h1>Image Cropping Example</h1>
      <MultipleImageCropping onUpload={handleImageCrop} onCancel={handleCancle} />
    </div>
  );
};

export default App;

Props

onUpload: (image:[]) => void

This callback function is triggered when the user completes the cropping process for the images. It receives an array of cropped image objects as its parameter. You can use this function to process, upload, or handle the cropped images as needed.

      <MultipleImageCropping onUpload={handleImageCrop}  />

onCancel: (image:[]) => void

This callback function is triggered when the user cancels the image cropping process. You can use this function to handle clearing images, resetting UI, or any other action when the user chooses to cancel.

      <MultipleImageCropping onCancel={handleCancle} />

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 89.1%
  • CSS 8.4%
  • JavaScript 2.5%