1.0.1 • Published 4 days ago

editpix v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
4 days ago

Image

License: MIT Test on Main npm jsDelivr

A powerful and versatile image editing library for the browser.

Adjust brightness, contrast, saturation, and other image parameters. Apply filters and effects for creative transformations.

A complete list of the available features is available below.


Documentation

Please follow the documentation at the following link.

Installation

EditPix supports multiple different installation methods.

Usage in the browser

For use in the browser the library can be installed via npm or loaded via CDN.

Installing from npm

npm i editpix

In your HTML file, load the script as a module:

<script type="module" src="example.js"></script>

In your JavaScript file, import the library and use it:

import EditPix from './node_modules/editpix/src/editpix.js';

const editpix = new Editpix();

// use library

Loading from a CDN

In your HTML file, load the script as a module:

<script type="module" src="example.js"></script>

In your JavaScript file, import the library from the CDN and use it:

import EditPix from 'https://cdn.jsdelivr.net/npm/editpix/+esm';

const editpix = new Editpix();

// use library

You can also choose the version of the library you prefer by specifying it in the URL:

import EditPix from 'https://cdn.jsdelivr.net/npm/editpix@[version]/+esm';

Usage in Vue.js

Installing from npm

npm i editpix

Import and use in your component:

<script setup>

import EditPix from "editpix"

const editpix = new EditPix()

//use library

</script>

If it is useful to you, at the following link you can find a small example on how you can use EditPix with Vue.js 3 and the Composition API.


Features

  • Edit directly within the browser, without the need for Node
  • Easy to use functions, that do exactly what you'd expect from them

Currently implemented features:

  • Colorspace transforms:
    • RGB (to and from HSL, HEX)
    • HSL (to and from RGB)
    • HEX (to and from RGB)
  • Color filters:
    • Black and white
    • Grayscale
    • Sepia
  • Color adjustments:
    • Saturation
    • Temperature
    • Tint
  • Image resizing:
    • By target width
    • By target height
    • By percentage
  • Value adjustments:
    • Brightness
    • Contrast
    • Exposure
    • Opacity
    • Shadows
    • Highlights
    • Sharpness
  • Other tools:
    • Extract color palette
    • Extract dominant color

Project structure

  • demo/ - a collection of demo scripts of all features.
  • lib/ - rust code for functions in wasm.
  • src/core/ - all the functions for image editing.
  • src/editpix.js - main class of the library where all the functionality is grouped.
  • src/image-manager.js - image-related functions such as resizing and image-to-pixelArray conversion.
  • src/utils.js - utility functions shared between features.
  • test/ - Node unit tests using Jest.

Basic Usage

Here's a short tutorial / example on loading an image, performing simple edits, and then saving.

const editpix = new EditPix();

// image url
const url = "images/img.jpg";

// create image
var image = new Image();
image.src = url;

// waiting image load
image.onload = () => {
    // convert image to gray scale
    editpix.toGrayScale(image)
        .then(grayScaledImage => {
            // render original image
            document.body.appendChild(image);
            // render modified image
            document.body.appendChild(grayScaledImage);
        })
        .catch(error => { console.log(error) })
};

Contributing

We welcome contributions! Please follow our Code of Conduct and our Contributing guidelines.

Contributors

Contributors

Authors

License

This library is provided under the MIT license.