Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/lizainslie/canvo
- Owner: LizAinslie
- License: mit
- Created: 2019-01-18T18:33:15.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-01-28T09:29:22.000Z (about 6 years ago)
- Last Synced: 2024-12-08T08:26:57.626Z (2 months ago)
- Topics: image-editing, image-editor, image-processing
- Language: TypeScript
- Homepage: https://railrunner16.me/Canvo/
- Size: 627 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.