ng-image-cropper
v0.1.0
Published
```shell npm i angular-image-croper ```
Downloads
7
Readme
how to use?
step one:
npm i angular-image-croper
step two (in module):
import { ImageCroperModule } from 'angular-image-croper';
....
imports: [
.....
ImageCroperModule
],
....
step three(in html):
<image-croper #imageCroper></image-croper>
step four(in component):
const image = new Image()
image.src = '/assets/girl.jpeg'
image.onload = () => {
this.imageCroper.show({
image
}).then(file => {
console.log(file)
})
}
arguments of show method:
- image: [HTMLImageElement] The show method must be called until the image is loaded.
- src: src of image,If the image attribute is specified, the src attribute is automatically invalidated.
- size: size of cropper window.
- extra: [any] use data, will Return intact itself.