摘要:
public class PictureUtils { //根据给定的宽高获得bitmap public static Bitmap getScaledBitmap(String path, int destWidth, int destHeight){ //Read in the dimensions of the image on disk; ... 阅读全文
摘要:
function argumentNames(fn){ var found = /^[\s\(]*function[^(]*\(\s*([^)]*?)\s*\)/.exec(fn.toString()); return found && found[1] ? found[1].split(/,\s*/) : []; } 阅读全文
摘要:
function globalEval(data){ data = data.replace(/^\s* | \s*$/g,""); if(data){ var head = document.getElementsByTagName("head")[0] || document.documentElement,script = document.createEl... 阅读全文