Skip to content

Instantly share code, notes, and snippets.

@QGao
Created December 7, 2011 02:04
Show Gist options
  • Save QGao/1441093 to your computer and use it in GitHub Desktop.
Save QGao/1441093 to your computer and use it in GitHub Desktop.
TiSDK MD5 sample
var win = Ti.UI.createWindow({ backgroundColor: 'red' });
var md5 = Ti.Utils.md5HexDigest(win.toImage());
var label = Ti.UI.createLabel({
text:md5
});
win.add(label);
win.open();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment