Add your comments
DLS Archives
May 2012
| Sun | Mon | Tue | Wed | Thu | Fri | Sat |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | ||
| 6 | 7 | 8 | 9 | 10 | 11 | 12 |
| 13 | 14 | 15 | 16 | 17 | 18 | 19 |
| 20 | 21 | 22 | 23 | 24 | 25 | 26 |
| 27 | 28 | 29 | 30 | 31 | ||
Essential Windows Apps | Do Not Track | Microsoft Office | SayNow | LibreOffice | Zeam Android Launcher | Dead Space iPhone | Firefox 4 Mobile | Firefox 4 Release | PlayStation iPhone App | Excel Tips | Android Launcher | Google One Pass | Dead Space | Google Cloud Print | Songbird for Android | NBA Jam | Internet Explorer 9 | Windows 7 Connector for Mac | Office Mac 2011 | IE9 RC
Gadget News
- Explay Crystal revives transparent display phones with dash of color, low price
- Samsung's Music Hub launches in UK, France and Germany, offers 100GB storage, unlimited streaming
- Microsoft lands an official software outlet in Iraq
- LG launches new pair of TVs: DM2752 and M2752 can both double-up as your PC monitor






Reader Comments (Page 1 of 1)
(Unverified)Dec 19th 2009 7:35PM
@Austin
Your implementation will depend on how you want to make the editor accessible. I haven't seen anything added to the Wordpress Codex regarding Media Page-related filters, but that doesn't mean they don't exist. If they do, you might be able to use those hooks to call Pixlr instead of the default editor quite easily.
Otherwise, you'll want to do a variation on what I've done. I've insert a button (using WP filter hooks or by modifying the DOM using Javascript) that pulls the image you want to edit into Pixlr in the Post/Page edit page. Getting the image data is done relatively easily using the Pixlr API and an Ajax call (http://www.pixlr.com/wiki/developer/api).
WP natively supports Thickbox so you can use it to create a window into which the editor will appear; you just have to make sure Thickbox is loaded with the Admin panel you are accessing. Call Pixlr into a Thickbox window, referencing the image you want to edit. When Pixlr exits, it will POST the image data back to you -- as you close the Thickbox window, replace the old image with the new one, and - if there is a visible thumbnail - make sure it's updated as well.
titan007Dec 23rd 2009 2:42PM
Thanks for the info! I'll take a look into doing that. Thanks again.