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-picker-editor-v2

v2.0.0

Published

React library for the selection, edition and compression of images in png, jpeg and webp formats.

Downloads

4

Readme

ReactImagePickerEditor

React library for the selection, edition and compression of images in png, jpeg and webp formats This package is made completely with html and css without any extra components or npm packages. It's based in functional components based in hooks, for optimization were used memo, useMemo and useCalback for avoiding any extra-renders.

🚀🚀🚀🚀🚀 Ready to React 18 🚀🚀🚀🚀🚀🚀

Description

In many projects it is of interest to upload images for a backend, and sometimes we have to consult other programs for the compression of images and the change of format to improve the performance of the page. With ReactImagePickerEditor this is possible in real time with for each image that you want to upload.

Installation

npm i react-image-picker-editor --save

or yarn

yarn add react-image-picker-editor

Usages

You must import the following where you will use it:

...
import ReactImagePickerEditor, { ImagePickerConf } from 'react-image-picker-editor';
import 'react-image-picker-editor/dist/index.css'
...
  const config2: ImagePickerConf = {
    borderRadius: '8px',
    language: 'en',
    width: '330px',
    height: '250px',
    objectFit: 'contain',
    compressInitial: null,
  };
  // const initialImage: string = '/assets/images/8ptAya.webp';
  const initialImage = '';

 return <div>
       ...
        < ReactImagePickerEditor
            config={config2}
            imageSrcProp={initialImage}
            imageChanged={(newDataUri: any) => { setImageSrc(newDataUri) }} />
        </div>
      ...

Here is an example with different configurations

<h2>Basic ussage</h2>
  <ReactImagePickerEditor config={config2}/>
<br />
<h2>Initial Image , a callback to get the updates of the dataUri image </h2>
<ReactImagePickerEditor
      config={config2}
      imageSrcProp={initialImage}
      imageChanged={(newDataUri: any) => { setImageSrc(newDataUri) }} />

1

More about the component

The ReactImagePickerEditor component has a setting to change the width, length, the aspectRatio, and objectFit properti of the loaded image. In addition to the language ( en | es | fr | de ). It also has an initial compression ratio option that by default is null. It is important to note that the quality factor for image compression is only for formats such as: jpeg and webp. The interface looks like this:

export interface ImagePickerConf {
  width?: string;
  height?: string;
  borderRadius?: string;
  aspectRatio?: number | null;
  objectFit?: "cover" | "contain" | "fill" | "revert" | "scale-down";
  compressInitial?: number; // Range from [1-100]
  language?: string;
  hideDeleteBtn?: boolean;
  hideDownloadBtn?: boolean;
  hideEditBtn?: boolean;
  hideAddBtn?: boolean;
}

| name | type | description | default | | --------------- | :-----: | :--------------------------------------------------------------------------------------------------------------------------------------------------- | ------: | | width | string | Set the specific width of the div that contain the image uploaded | null | | height | string | Set the specific height of the div that contain the image uploaded | null | | borderRadius | string | Set the property for the holder of the image and the image | null | | aspectRatio | string | This apply a specifict aspect ratio to the div, use this with only setting a width and you can archive the ratio that you want it | null | | objectFit | string | Default is 'cover', but if 'contain' is used the content will be scaled to maintain its aspect ratio while fitting inside the element's content box. | 'cover' | | compressInitial | number | Quality factor applied to images with format: "webp, jpeg" | null | | language | string | set the translations object | 'en' | | hideDeleteBtn | boolean | hide the botton | false | | hideDownloadBtn | boolean | hide the botton | false | | hideEditBtn | boolean | hide the botton | false | | hideAddBtn | boolean | hide the botton | false |

A basic configuration object with compression applied would be:

  ...
  config1: ImagePickerConf = {
    language: 'en',
    compressInitial: 90
  };
  ...

The above example means that once an image is loaded from the file system, a compression quality is applied to it with a value of 0.9, and the resulting image will be reformatted as a jpeg.

Editing panel

Once you have selected an image, 4 buttons are enabled below the image:

  1. load a new image.
  2. Open the editing panel.
  3. Download the image.
  4. Delete the image.

In the edit panel, you can change the quality ratio to compress the file size (in kb). Also changing width and height in px keeping aspect ratio or not, is selectable. You can change the image format as you wish, the options are 'png', 'webp','jpeg'. The 'Png' format is not affected by changing the quality ratio. Another capability is that you can crop the image by simply dragging and dropping the cropping component. And by clicking on the crop button.

I just added a new tab for applying filters. Now you can not only crop, compress and reformat your image, but you have new features like:

  1. Contrast level
  2. Brigthness level
  3. Gray
  4. Sepia
  5. Saturation
  6. Blur

🔥🔥🔥🔥🔥 You can have in your website a component like the instagram or linkedin for editing your images. 🔥🔥🔥🔥🔥

tab-section

2

Control section

n-1

n-2

n-3

n-4

Cropping images

5

Example demo

https://react-image-picker-editor.surge.sh/

Stackblitz example

https://stackblitz.com/edit/react-image-picker-editor-example-usage?file=App.tsx

Angular version

ngp-image-picker

More useful Npm packages

1. ngp-lazy-load

2. ngp-material-rating

3. react-hook-modal

4. react-basic-stepper

5. tabs-react-component