I've built a plugin for ckFinder 2.0 that integrates the pixlr.com online image editing site into the file manager.
The plugin adds an "Edit in Pixlr" option to the menu that pops up when you right-click on a thumbnail.
Clicking the option takes you (and the selected image) to pixlr.com where you can edit the image in pixlr's photoshop-like environment.
You then "save" the image in the pixlr interface and you are taken back to your ckFinder screen, the image modifications are now saved to your site and the thumbnail is refreshed.
to download the plugin or for more info: https://github.com/micah1701/ckfinder2pixlr
Screenshot:
Wed, 11/17/2010 - 15:42
#1
Re: pixlr image editing plugin
Please, let me know.
Re: pixlr image editing plugin
Sorry I just noticed your post. I realized recently that my plugin breaks in version 2.2 (or maybe even 2.1) but I found a quick and easy fix.
In the file plugin.js you just need to add the following line:
between lines 19 and 20 before the line that changes the browser's location path.
So this line:
should look like this:
Re: pixlr image editing plugin
Uncaught TypeError: Object #<Object> has no method 'destroy'
Re: pixlr image editing plugin
Re: pixlr image editing plugin
Hi, I'm in the same boat. I really need cropping capability in CKFinder. I installed this pixlr plugin, but the "Edit in pixlr" option isn't even showing up. I'm using CKFinder 2.3.1
Re: pixlr image editing plugin
I just installed the plugin and while I was able to edit and save the image, I did receive the below error messages.
I found how to fix it so the error messages do not show.
In the process.php file in line 102 change
unlink($fp);
to
@unlink($fp);
That eliminated of the errors for me.