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

@infinwebs/ngx-photo-editor

v1.0.8

Published

An image cropper for Angular

Downloads

26

Readme

Ngx Photo Editor for Angular

NPM version The MIT License The MIT License

example

Demo

Getting started

Step 1: Install ng-bootstrap

   ng add @ng-bootstrap/ng-bootstrap

Step 2: Install ngx-photo-editor

    npm install ngx-photo-editor --save

Example usage:

Add the NgxPhotoEditorModule to the imports of the module.

      import {NgxPhotoEditorModule} from "ngx-photo-editor";

@NgModule({
  imports: [
    NgxPhotoEditorModule
  ]
})

Add the element to your HTML:


<div><input type="file" (change)="fileChangeEvent($event)"/></div>

<ngx-photo-editor
  [imageChanedEvent]="imageChangedEvent"
  (imageCropped)="imageCropped($event)"
  [aspectRatio]="4/3"
  [viewMode]="3"
  [resizeToWidth]="500"></ngx-photo-editor>

<img [src]="base64" alt="">

And add this to your ts file:


import {CroppedEvent} from 'ngx-photo-editor';

export class AppComponent {
  imageChangedEvent: any;
  base64: any;

  fileChangeEvent(event: any) {
    this.imageChangedEvent = event;
  }

  imageCropped(event: CroppedEvent) {
    this.base64 = event.base64;
  }
}

When you choose a file from the file input, it will trigger fileChangeEvent. That event is then passed to the ngxPhotoEditor through imageChangedEvent which will load the image into the cropper. Everytime you release the mouse, the imageCropped event will be triggerd with the cropped image as a Base64, Blob in its payload.

API

All inputs are optional. Either the imageChangedEvent, imageBase64 or imageFile or imageUrl should be set to load an image into the cropper.

Inputs

| Name | Type | Default | Description | |-------------------------|---------- | ------------ |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | imageChangedEvent | FileEvent | | The change event from your file input | | imageFile | Blob(File)| | The file you want to change | | imageBase64 | string | | If you don't want to use a file input, you can set a base64 image directly and it will be loaded into the cropper | | imageURL | string | | If you don't want to use a file input or a base64 you can set an URL to get the image from. If requesting an image from a different domain make sure Cross-Origin Resource Sharing (CORS) is allowed or the image will fail to load. | | format | string | png | Output format (png, jpeg, webp, bmp, ico) (not all browsers support all types, png is always supported, others are optional) | | aspectRatio | number | 1 / 1 | The width / height ratio (e.g. 1 / 1 for a square, 4 / 3, 16 / 9 ...) | | resizeToWidth | number | 0 (disabled) | Cropped image will be resized to this width (in px) | | resizeToHeight | number | 0 (disabled) | Cropped image will be resized to this height (in px) (will be ignored if resizeToWidth is set) | | roundCropper | boolean | false | Set this to true for a round cropper. Resulting image will still be square, use border-radius: 100% on resulting image to show it as round. | | imageQuality | number | 92 | This only applies when using jpeg or webp as output format. Entering a number between 0 and 100 will determine the quality of the output image. | | autoCrop | boolean | true | Enable to crop the image automatically when initialized. | | autoCropArea | number | 1 (80% of the image)| A number between 0 and 1. Define the automatic cropping area size (percentage). | | viewMode | number | 0 | Define the ViewMode of the cropper. | | mask | boolean | true | Show the black modal above the image and under the crop box. | | guides | boolean | true | Show the dashed lines above the crop box. | | centerIndicator | boolean | true | Show the center indicator above the crop box. | | canvasHeight | number | 400 | Cropper canvas height. | | scalable | boolean | true | Enable to scale the image. | | zoomable | boolean | true | Enable to zoom the image. | | cropBoxMovable | boolean | true | Enable to move the crop box by dragging. | | cropBoxResizable | boolean | true | Enable to resize the crop box by dragging. | | modalSize | string | null | Modal Size. ('sm' / 'lg' / 'xl') | | modalCentered | boolean | false | Modal Position Centered. | | hideModalHeader | boolean | false | Hide Modal Header. | | darkTheme | boolean | true | Enable Dark Theme. | | imageSmoothingEnabled | boolean | true | Smooth image output. | | imageSmoothingQuality | string | low | quality of image smoothing, one of "low" or "medium", or "high". |

Outputs

| Name | Type | Description | | ----------------------- | ----------------- | ----------- | | imageCropped | CroppedEvent | Emits an ImageCroppedEvent each time the image is cropped | | loadImageFailed | void | Emits when a wrong file type was selected |

Interfaces

ImageCroppedEvent

| Property | Type | Description | | -------------------- | ------ | ----------- | | base64 | string | Base64 string of the cropped image | | file | file(Blob) | Blob(File) of the cropped image |

viewMode

  • Type: Number
  • Default: 0
  • Options:
    • 0: no restrictions
    • 1: restrict the crop box to not exceed the size of the canvas.
    • 2: restrict the minimum canvas size to fit within the container. If the proportions of the canvas and the container differ, the minimum canvas will be surrounded by extra space in one of the dimensions.
    • 3: restrict the minimum canvas size to fill fit the container. If the proportions of the canvas and the container are different, the container will not be able to fit the whole canvas in one of the dimensions.

Define the view mode of the cropper. If you set viewMode to 0, the crop box can extend outside the canvas, while a value of 1, 2 or 3 will restrict the crop box to the size of the canvas. A viewMode of 2 or 3 will additionally restrict the canvas to the container. Note that if the proportions of the canvas and the container are the same, there is no difference between 2 and 3.