Skip to content

Instantly share code, notes, and snippets.

@kalligator
Forked from coolaj86/README.md
Created March 29, 2016 11:48
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kalligator/a8fc3f12ecb8085e77f7 to your computer and use it in GitHub Desktop.
Save kalligator/a8fc3f12ecb8085e77f7 to your computer and use it in GitHub Desktop.
Let Google cache and resize your images
function getUrl(width, url) {
return 'https://images1-focus-opensocial.googleusercontent.com/gadgets/proxy'
+ '?container=focus'
+ '&resize_w=' + width
+ '&url=' + url
;
}
getUrl(250, 'http://andshelived.files.wordpress.com/2008/10/killer-mater.jpg');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment