khrome / image-booth

ES6 module targeting the Photoshop 3 feature set in node & the browser

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ImageBooth.js

image

ImageBooth is a javascript raster graphics layered image convolution and painting library written on top of the canvas abstraction that runs on the browser or the server and is written in native, browser compatible, ES6 modules. For compatibility (I'm looking at you, electron) they are also available as a commonjs module, built in /dist.

We're aiming for the feature set of PS7 combined with the features from Painter3 but with decentralized file sharing and editing. The ultimate goal is being able to open PSDs, RIFFs and run actions, in addition to editing needs for both server and client use cases.

Usage

In it's simplest form it looks like this:

import { Image } from 'image-booth';
// or: const { Image } = require('image-booth');
(async ()=>{
    // load an image from a remote location
    const image = new Image({ source: 'http://some.web/location' });
    await image.ready; //wait for the remote source to load
    image.currentLayer.act('negative'); //photonegative the image
    await image.save('/some/file/location'); //save the resulting image
})()

Supported actions are:

The library also supports paint tools, used with different brushes:

  • Paintbrush - A digital painting brush that supports a variety of brushes
  • Draw - A simple single pixel line drawing tool.
  • Flood Fill - A paintbucket operation.
  • Sample Color - An eyedropper tool for sampling colors within the image.
  • Clone - Clone from one part of your image to another.

Testing

Roadmap

  • - headless browser testing
  • - expose compositors
  • - expose tool options
  • - selection model
  • - non-destructive move operation
  • - convolve brush
  • - masks
  • - channel masks
  • - plugins
  • - intelligent scissors
  • - sprite brush
  • - dynamic media
  • - tablet support
  • - text layers (fabric.js?)
  • - shape layers (fabric.js?)
  • - vector file import (svg, pdf, eps, etc)

Testing

Run the tests headless.

npm run test

to run the same test inside the browser:

npm run browser-test

to run the same test headless inside docker:

npm run container-test

About

ES6 module targeting the Photoshop 3 feature set in node & the browser

License:MIT License


Languages

Language:JavaScript 72.5%Language:HTML 26.6%Language:CSS 0.9%