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

guachos-image-picker

v1.1.2

Published

Biblioteca angular basada en componentes de material angular para la selección, edición y compresión de imágenes en formatos png, jpeg, webp

Downloads

67

Readme

Guachos Image Picker

Angular library based on angular material components for the selection, edition and compression of images in png, jpeg, webp formats This library was generated with Angular CLI version 13.1.3, and support until angular version 10.0.2 to the latest version of angular.

Description

In many projects it is of interest to upload and edit images, 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 GuachosImagePicker this is possible in real time with for each image that you want to upload.

Installation

Using npm

npm i guachos-image-picker --save

Using yarn

yarn add guachos-image-picker

GuachosImagePicker requires Angular Material. version 10.0.1 or higher

ng add @angular/material

Importing the BrowserAnimationsModule into your application enables Angular's animation system. Declining this will disable most of Angular Material's animations.

External Resource

GuachosImagePicker use resize-observer, for the functionality of cropping images. The resize observer api is used the resize observer interface reports changes to the dimensions of an Element's content or border box, or the bounding box of an SVGElement. Install the package

Using npm

npm i resize-observer --save

Using yarn

yarn add resize-observer

Usages

You must import the module GuachosImagePicker where you will use it and use the component

import { GuachosImagePickerModule } from 'guachos-image-picker';

@NgModule({
  imports: [
    GuachosImagePickerModule
  ],
})

In your component:

<guachos-image-picker [_config]="imagePickerConf" ($imageChanged)="onImageChange($event)"></guachos-image-picker>

In .ts file

export class ExampleComponent {
  imagePickerConf: ImagePickerConf = {
    borderRadius: '4px',
    language: 'en',
    width: '320px',
    height: '240px',
  };
}

Here is an example with different configurations

export class ExampleComponent {
  config1: ImagePickerConf = {
    borderRadius: '16px',
    language: 'en',
  };
  config2: ImagePickerConf = {
    borderRadius: '50%',
    language: 'es',
    width: '200px',
    height: '200px',
  };
  config3: ImagePickerConf = {
    borderRadius: '4px',
    language: 'en',
  };
  initialImage = 'https://havanatursa.com/assets/images/multi-agencies/backgrounds/slider.jpg';
}
<h2>Basic usage</h2>
<guachos-image-picker [_config]="config1"></guachos-image-picker>
<br />
<h2>Custom config</h2>
<guachos-image-picker [_config]="config2"></guachos-image-picker>
<br />
<h2>Initial Image</h2>
<guachos-image-picker [_imageSrc]="initialImage" ($imageChanged)="onImageChanged($event)" [_config]="config3"> </guachos-image-picker>

More about the component

The GuachosImagePicker component has a setting to change the width and length of the loaded image. In addition to the language (only 'es' and 'en'). It also has an initial compression option that by default is true. The interface looks like this:

export interface ImagePickerConf {
  width?: string;
  height?: string;
  borderRadius?: string;
  compressInitial?: boolean;
  language?: string;
}

Editing panel

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

1- Load a new image.
2- Open the editing panel.
3- DOWNLOAD.

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.