Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/meltingice/CamanJS
Javascript HTML5 (Ca)nvas (Man)ipulation
https://github.com/meltingice/CamanJS
Last synced: 12 days ago
JSON representation
Javascript HTML5 (Ca)nvas (Man)ipulation
- Host: GitHub
- URL: https://github.com/meltingice/CamanJS
- Owner: meltingice
- License: bsd-3-clause
- Created: 2010-11-08T23:31:25.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2020-02-20T14:45:37.000Z (over 4 years ago)
- Last Synced: 2024-05-21T22:18:56.687Z (6 months ago)
- Language: HTML
- Homepage: http://camanjs.com
- Size: 7.82 MB
- Stars: 3,541
- Watchers: 97
- Forks: 403
- Open Issues: 119
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-github-star - CamanJS
README
# About the Project
**This project is no longer actively maintained. Thanks everyone for the support and interest over the years!**
The main focus of CamanJS is manipulating images using the HTML5 canvas and Javascript. It's a combination of a simple-to-use interface with advanced and efficient image/canvas editing techniques. It is also completely library independent and can be safely used next to jQuery, YUI, Scriptaculous, MooTools, etc.
CamanJS is very easy to extend with new filters and plugins, and it comes with a wide array of image editing functionality, which is only growing as the community makes more plugins. All features that are not a part of the core CamanJS library are in a [separate plugins repository](https://github.com/meltingice/CamanJS-Plugins).
For more information, I highly recommend taking a look at the [official website](http://camanjs.com) where there is more comprehensive documentation and interactive demos. You can also [read the wiki](https://github.com/meltingice/CamanJS/wiki) for some basic information about the project and how to use it.
CamanJS is written in [Coffeescript](http://coffeescript.org) as of version 3.0. **It works both in-browser and in NodeJS.**
CamanJS is a project that I work on in purely my own spare time. If you would like to pitch in a beer or donate to say thanks, my Bitcoin address is: 1EVNQ7FiWDaqpfYXRLCtgMe5RBcz3kEuAG
## Usage
Include one of the versions in the `dist/` folder, then you can run:
```js
Caman("#image-id", function () {
this.brightness(10);
this.contrast(20);
this.render(function () {
alert("Done!");
});
});
```Caman also supports modifying images via the `data-caman` HTML attribute. Simply separate each instruction with a space. Images with the `data-caman` attribute will automatically be modified at page load.
```html
```### HiDPI Support
Version 4 introduces better support for HiDPI (Retina) displays. It allows you to specify a higher resolution replacement using HTML data attributes. Keep in mind, however, that higher resolution images take longer to render.
**HTML data attributes**
* `data-caman-hidpi`: URL to the high resolution replacement image
* `data-caman-hidpi-disabled`: HiDPI support is enabled by default, so add this attribute if you wish to force disable it## Upgrading to Version 4
There is only 1 breaking change that occured with the version 4 release. When you initialize CamanJS with a canvas and an image, the parameter order has changed. It is now:
``` javascript
Caman("#canvas-id", "/path/to/image.png", function() {});
```This is in order to be more consistent with initialization, such that the "initialization object" is always the first parameter. Update your code accordingly.
## Development
If you are a developer who is contributing directly to the project, there are some tools to help you out.
### Building
To install all dependencies required for development, run `npm install -d`.
Because all plugins are in a separate repository, make sure you run:
```
git submodule init && git submodule update
```To build, simply run `cake build`. The resulting files will be placed in the dist/ folder. Plugins will be automatically discovered and added to caman.full.js after the core library. You can also auto-compile when a file changes by using `cake watch`.
If you add any files to the core library, you will need to add them to the `coffeeFiles` array in the Cakefile. The point of this is so that order is preserved when generating the file JS file. Plugins do not need to be added to the Cakefile.
You will probably want to generate documentation if you make any changes. In addition to the normal requirements, you will also need the Python library Pygments.
To generate the documentation, run `cake docs`.
## CDN JS Hosting
CamanJS is hosted on CDN JS if you're looking for a CDN hosting solution. It is the full and minified version of the library, which means all plugins are included. Simply load CamanJS directly from [this URL](http://cdnjs.cloudflare.com/ajax/libs/camanjs/3.3.0/caman.full.min.js) for usage on your site.
## NodeJS Compatibility
CamanJS is fully compatible with NodeJS. The easiest way to install it is:
```
npm install caman
```**Saving from NodeJS**
To save your modified image in NodeJS, simply call the save() function **after** rendering is finished by passing a callback function to `render()`. Trying to save before rendering is finished will cause issues.
``` javascript
Caman = require('caman').Caman;Caman("./path/to/file.jpg", function () {
this.brightness(40);
this.render(function () {
this.save("./output.png");
});
});
```## Testing
Tests for CamanJS run both in NodeJS and the browser.
### NodeJS
The NodeJS tests use mocha as the test runner. The simplest way to run the test suite is by running `npm test`.
### Browser
The browser tests are run by Karma. It will start up Chrome, Firefox, and Safari (if running OSX) in the background. You can minimize each of these browsers if desired. It will automatically run tests after CamanJS is recompiled by the Cakefile as well.
You can run Karma by running `karma start`, or you can do a single run with the NodeJS tests by running `npm test`.