Awesome editor for Angular 6 based on Angular Material
yarn add cropperjs
}
"styles": [
"node_modules/cropperjs/dist/cropper.css"
],
"scripts": [
"node_modules/cropperjs/dist/cropper.js"
]
}
yarn add ngx-image-editor
import {NgxImageEditorModule} from "ngx-image-editor";
@NgModule({
imports: [
NgxImageEditorModule
]
})
<ngx-image-editor [config]="yourConfig"></ngx-image-editor>
Property | Description |
---|---|
[config] |
An object containing editor configuration (see Configuration) |
(file) |
The emitted file after editing. |
Property | Description |
---|---|
ImageName | Name of the image. |
ImageUrl | URL of the image (if it coming from a CDN) . |
File | File object of the image (if it is being uploaded through the browser. |
ImageType | Type of the image (default is image/jpeg ). |
AspectRatios | Array of aspect ratios. Available options: 0:0 , 1:1 , 2:3 ,4:3 , 16:9 l . (default is 0:0 ) |
@Component({
selector: 'app-root',
styleUrls: ['./app.component.css']
template: `
<ngx-image-editor
[config]="config"
(close)="close($event)"
(file)="getEditedFile($event)">
</ngx-image-editor>
`,
})
export class AppComponent {
public config = {
ImageName: 'Some image',
AspectRatios: ["4:3", "16:9"],
ImageUrl: 'https://static.pexels.com/photos/248797/pexels-photo-248797.jpeg',
ImageType: 'image/jpeg'
}
public close() {
// Fired when the editor is closed.
}
public getEditedFile(file: File) {
// Fired when the file has been processed.
}
}
![]() |
![]() |
---|---|
Hristo Georgiev | Taulant Disha |