GithubHelp home page GithubHelp logo

gera2ld / img-cropper Goto Github PK

View Code? Open in Web Editor NEW
1.0 3.0 0.0 33 KB

A lite image cropper based on canvas

Home Page: https://gera2ld.github.io/img-cropper

HTML 8.73% JavaScript 89.42% Shell 1.86%

img-cropper's Introduction

ImageCropper

Bower NPM Downloads

Installation

# Via NPM
$ npm i img-cropper

# Via Bower
$ bower i img-cropper

Usage

const ImageCropper = require('img-cropper');

const cropper = ImageCropper.create({
  container: document.getElementById('cropper'),
  onCrop: cropData => {
    canvasPreview.getContext('2d').drawImage(cropData.getCanvas(), 0, 0, 200, 200);
  },
});

Documents

  • function ImageCropper.create(options)

    options have properties below:

    • container: Required

      DOM element to contain the cropper. The cropper will be intialized with the width and height of its container if no width and height is explicitly defined.

    • width (Optional)

      Maximum width of the cropper. If not defined, container.clientWidth will be used.

    • height (Optional)

      Maximum height of the cropper. If not defined, container.clientHeight will be used.

    • minHeight (Optional)

      Minimum height of the cropping rect, default as 5.

    • ratio (Optional)

      The width / height ratio, default as 1, 0 stands for unlimited.

    • directions (Optional)

      An array of resizer directions, default as ['nw', 'ne', 'sw', 'se'].

    • onCrop (Optional)

      Function called with cropData when cropped image is updated.

    • debounce (Optional)

      Either 'mouseup' or the number of time in milliseconds to debounce the onCrop call.

    Returns an object with properties below:

    • function reset(sourceImage, (optional) cropRect, (optional) callback)

      sourceImage can be , , Blob or URL string.

      cropRect can be an object with optional x, y, width, height properties.

      callback will be called with a cachable if specified.

    • function setRatio(ratio)

    • function setDebounce(debounce)

      debounce is the same as in options.

    • function setRect(cropRect)

      Modify the crop rect manually, the same as in reset.

img-cropper's People

Stargazers

 avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.