melinath / django-daguerre

On-the-fly image manipulation for Django.
http://django-daguerre.readthedocs.org/
BSD 3-Clause "New" or "Revised" License
85 stars 15 forks source link

Simple Javascript API #58

Open harrislapiroff opened 10 years ago

harrislapiroff commented 10 years ago

Might be nice to write a small javascript to simplify the process of requesting images dynamically. Something with an API like:

request_image(
    storage_path,
    {
        adjustment: [args],
        adjustment2: [args]
    },
    function callback (info_obj) {
        ...
    }
);