Skip to content

Instantly share code, notes, and snippets.

@blitline-dev
Last active December 21, 2015 18:39
Show Gist options
  • Save blitline-dev/6349164 to your computer and use it in GitHub Desktop.
Save blitline-dev/6349164 to your computer and use it in GitHub Desktop.
quadrant_example
{
"application_id":"YOUR_APP_ID",
"src":"http://www.imagemagick.org/Usage/crop/paged.gif",
"functions":[
{
"name":"convert_command",
"params":{
"-crop":"30x40+0+0"
},
"save":{
"image_identifier":"top_left"
}
},
{
"name":"convert_command",
"params":{
"-crop":"0x40+30+0"
},
"save":{
"image_identifier":"top_right"
}
},
{
"name":"convert_command",
"params":{
"-crop":"30x0+0+40"
},
"save":{
"image_identifier":"bottom_left"
}
},
{
"name":"convert_command",
"params":{
"-crop":"+30+40"
},
"save":{
"image_identifier":"bottom_right"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment