Skip to content

Instantly share code, notes, and snippets.

@ovaillancourt
Created October 19, 2012 20:27
Show Gist options
  • Save ovaillancourt/3920515 to your computer and use it in GitHub Desktop.
Save ovaillancourt/3920515 to your computer and use it in GitHub Desktop.
var data = {
id : uploaded_file._id,
filters : [
{
name : 'image',
options : [
{
operation : 'resize',
width : $placeholder_img.width(),
height : $placeholder_img.height()
},
{
operation : 'crop',
width : target_width,
height : target_height,
x : $placeholder_img.css( 'left' ),
y : $placeholder_img.css( 'top' )
}
]
}
]
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment