Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/lizainslie/canvo

An easy to implement, well-featured image editor that uses HTML5 Canvas.
https://github.com/lizainslie/canvo

image-editing image-editor image-processing

Last synced: about 2 months ago
JSON representation

An easy to implement, well-featured image editor that uses HTML5 Canvas.

Awesome Lists containing this project

README

        

# Canvo
An easy to implement, well-featured image editor that uses HTML5 Canvas.

## Installation
### Browser
Just download `canvo.browser.js` from the `dist/` directory in this repo and include the following in the bottom of your `` before any other scripts:
```html

```

### Bower
Run this in your projects main directory:
```sh
bower install canvo
```

Then include it like this:
```html

```

### Node
Use your choice of package manager to install `canvo`, and import it using one of these two methods:

**CommonJS (e.g. `require()`):**
```js
const Editor = require('canvo');

// Use it below (you should know this)...
```
**ESModules (e.g. [Webpack](https://webpack.js.org/) or [Rollup](https://rollupjs.com)):**
```js
import Editor from 'canvo';

// Use it below (you should know this)...
```
You should know this stuff anyway, I just try to make my READMEs idiot-proof.