Not all operations can fit neatly in a URL or RESTful operation. In fact, very few can, so we have built a robust system for supporting very complicated operations and workflow pipelines for image processing.
You submit JSON to use and we'll get back to you, usually in milliseconds, when the operation has completed.
# Blitline JSON{# Where you want Blitline to 'get' the image from"src" : "http://www.google.com/logos/2011/yokoyama11-hp.jpg"# Your secret ID so that we know who you are"application_id" : "YOUR_APP_ID"# Define some functions for Blitline to perform"functions : [{"name" : "resize_to_fit"# Set the parameters for the function"params" : { "width" : 100 }# You can define where you want the image to go# or if you don't, we'll auto store it for a day."save" : { "image_identifier" : "MY_CLIENT_ID" }}]}