npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-image-cropz

v0.1.1

Published

A react library to crop image

Downloads

10

Readme

react-image-cropz

A react library to crop image

NPM JavaScript Style Guide

Install

npm install --save react-image-cropz

Usage

import React from 'react'

import ReactImageCropZ from 'react-image-cropz'

class YourComponent extends React.Component {
  state = {
    crop: {
      x: 10,
      y: 10,
      width: 80,
      height: 80
    }
  }
  onCropChange(crop) {
    this.setState({ crop });
  }

  render () {
    return (
      <ReactImageCropZ
        src="your-image-url"
        crop={this.state.crop}
        onChange={this.onCropChange}
      />
    )
  }
}

Props

src (required): string

<ReactImageCropZ src="path/to/image.jpg" />

You can of course pass a blob url or base64 data.

onChange(crop) (required): function

onCropChange(crop) {
  this.setState({ crop });
}

crop (required): object

All crop values are in percentages, and are relative to the image. All crop params are optional.

crop: {
  x: 20,
  y: 10,
  width: 30,
  height: 10
}

<ReactImageCropZ src="path/to/image.jpg" crop={crop} />

If you want a fixed aspect you can either omit width and height:

crop: {
 aspect: 16/9
}

Or specify one of the dimensions:

crop: {
  aspect: 16/9,
  width: 50,
}

In this case the other dimension will be calculated and onChange and onComplete will be fired with the completed crop, so that the crop will be rendered on the next pass.

minWidth (optional): number

A minimum crop width, as a percentage of the image width.

minHeight (optional): number

A minimum crop height, as a percentage of the image height.

maxWidth (optional): number

A maximum crop width, as a percentage of the image width.

maxHeight (optional): number

A maximum crop height, as a percentage of the image height.

keepSelection (optional): bool

If true is passed then selection can't be disabled if the user clicks outside the selection area.

disabled (optional): bool

If true then the user cannot modify or draw a new crop. A class of disabled is also added to the container for user styling.

className (optional): string

A string of classes to add to the main ReactCrop element.

style (optional): object

Inline styles object to be passed to the image wrapper element.

imageStyle (optional): object

Inline styles object to be passed to the image element.

imageTypeAfterCrop (optional): string

Image type after crop (support jpeg and png only).

onComplete(crop, imageSrc) (optional): function

A callback which happens after a resize, drag, or nudge. Passes the current crop state object, as well as a new crop image src.

onImageLoaded(image, pixelCrop) (optional): function

A callback which happens when the image is loaded. Passes the image DOM element and the pixelCrop if a crop has been specified by this point.

onImageError(image) (optional): function

This event is called if the image had an error loading.

onDragStart() (optional): function

A callback which happens when a user starts dragging or resizing. It is convenient to manipulate elements outside this component.

onDragEnd() (optional): function

A callback which happens when a user releases the cursor or touch after dragging or resizing.

crossorigin (optional): string

Allows setting the crossorigin attribute on the image.

License

MIT © hoaiduyit