Skip to content

Instantly share code, notes, and snippets.

@tolmasky
Created January 15, 2010 10:03
Show Gist options
  • Save tolmasky/277935 to your computer and use it in GitHub Desktop.
Save tolmasky/277935 to your computer and use it in GitHub Desktop.
image = new Image();
var imageLoaded = false;
image.onload = function() { imageLoaded = true; }
image.src = dataURL;
while (!imageLoaded)
sleep(10);
size = CGSizeMake(image.width, image.height);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment