CamanJS is also not a canvas drawing library, per se. It's main focus is manipulating images, not drawing new content.
If you're looking for more information, here is a blog post that describes the project some more.
Using CamanJS is simple. It goes something like this:Caman('path/to/image.jpg', '#canvas-id', function () { this.brightness(10); this.contrast(-5); this.saturation(-50); // and so on... });
or you can use it like this:
Caman({ src: 'path/to/image.jpg', canvas: '#canvas-id', ready: function () { this.brightness(10); this.contrast(-5); this.saturation(-50); // and so on... } });
You can now even save images after they've been modified! With the current implementation, users will have to rename the file to something.(png|jpg) since they get redirected to the base64 encoding of the image and the browser doesn't know the file type. The save() function defaults to png, but you can override this and specify either png or jpg.
Caman('img/example.jpg', '#image-caman', function () { this.saturation(-20); this.brightness(10); // More info on finished() in events section below this.finished(function () { this.save('png'); // shows a download file prompt }); });Currently CamanJS has three different events you can listen for, and it is very simple to add new events if you need to.
- processStart
- fired when a single image filter begins manipulating an image
- processComplete
- fired when a single image filter finishes manipulating an image
- queueFinished
- fired when all image filters are done and an image is finished being updated
You may also find this extremely handy:
Caman('img/example.jpg', '#image-caman', function () { this.contrast(25); this.hue(5); this.colorize('#AF3D15', 25); this.saturation(-30); this.brightness(5); // Event helper that fires when *this* image is finished rendering this.finished(function () { console.log("Image finished rendering!"); }); });Extending CamanJS is easy as well. It's accomplished by adding functions onto the manip object. Below is an example of how to do so:
(function (Caman) { Caman.manip.fancy_filter = function (adjust) { // this.process will be run in a loop, and the // rgba object represents the current pixel's rgba // values. you *must* return the modified rgba object // for it to work properly. return this.process(function (rgba) { rgba.r += adjust; rgba.g -= adjust; rgba.b += adjust * 2; rgba.a = 0.9; return rgba; }); }; }(Caman));CamanJS comes with a set of utility functions that you may find very useful when extending it. In the main body of the function thats extending CamanJS, you can simply access them through Caman.func_name(). Their names should be pretty self explanatory:
- rgb_to_hsl()
- hsl_to_rgb()
- rgb_to_hsv()
- hsv_to_rgb()
- rgb_to_xyz()
- xyz_to_rgb()
- xyz_to_lab()
- lab_to_xyz()
- hex_to_rgb()
If you add a filter, please edit test/benchmark/benchmark.js and add your filter (with appropriate args) to the list at the top of the file.
* Implement a way to specify canvas elements by class instead of id, and apply effects to all found canvases. * Add lots more adjustments/effects * Figure out if there's a way to load images cross-domain (don't think there is?)