Skip to content

Instantly share code, notes, and snippets.

@vadimdemedes
Created April 5, 2013 22:19
Show Gist options
  • Save vadimdemedes/5323133 to your computer and use it in GitHub Desktop.
Save vadimdemedes/5323133 to your computer and use it in GitHub Desktop.
var url = 'http://media.getchute.com/media/5aAxfa' // sample url returned from the Media Chooser
// Fill a 500x300 rectangle
Chute.fill(500, 300, url); // => http://media.getchute.com/media/5aAxfa/500x300
// Fit into 500x300 rectangle
Chute.fit(500, 300, url); // => http://media.getchute.com/media/5aAxfa/fit/500x300
// Max width of 500px
Chute.width(500, url); // => http://media.getchute.com/media/5aAxfa/w/500
// Max height of 300px
Chute.height(300, url); // => http://media.getchute.com/media/5aAxfa/h/300
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment