Note for IE9: in order to use the canvas fingerprinting on IE9, the html must have a valid html5 declaration:<!DOCTYPE html> If you want to use the screen resolution in calculating the fingerprint, pass the screen_resolution: true optionvar fingerprint = new Fingerprint({screen_resolution:...
var fingerprint = new Fingerprint().get(); //如果你想使用 Canvas FingerPrinting,则如下调用: var fingerprint = new Fingerprint({canvas: true}).get(); //如果你想使用屏幕分辨率计算指纹,则需如下调用: var fingerprint = new Fingerprint({screen_resolution: true}).get(); //使用自定义的哈希函数 ...