其他分享
首页 > 其他分享> > 浏览器随机指纹js代码

浏览器随机指纹js代码

作者:互联网

const toBlob = HTMLCanvasElement.prototype.toBlob;
const toDataURL = HTMLCanvasElement.prototype.toDataURL;

HTMLCanvasElement.prototype.manipulate = function() {
const {width, height} = this;
const context = this.getContext('2d');
const shift = {
'r': Math.floor(Math.random() * 10) - 5,
'g': Math.floor(Math.random() * 10) - 5,
'b': Math.floor(Math.random() * 10) - 5
};
const matt = context.getImageData(0, 0, width, height);
for (let i = 0; i < height; i += Math.max(1, parseInt(height / 10))) {
for (let j = 0; j < width; j += Math.max(1, parseInt(width / 10))) {
const n = ((i * (width * 4)) + (j * 4));
matt.data[n + 0] = matt.data[n + 0] + shift.r;
matt.data[n + 1] = matt.data[n + 1] + shift.g;
matt.data[n + 2] = matt.data[n + 2] + shift.b;
}
}
context.putImageData(matt, 0, 0);

};

Object.defineProperty(HTMLCanvasElement.prototype, 'toBlob', {
value: function() {

try {
this.manipulate();
}
catch(e) {
console.warn('manipulation failed', e);
}

return toBlob.apply(this, arguments);
}
});
Object.defineProperty(HTMLCanvasElement.prototype, 'toDataURL', {
value: function() {

try {
this.manipulate();
}
catch(e) {
console.warn('manipulation failed', e);
}

return toDataURL.apply(this, arguments);
}
});

 

原文转载自:http://www.zhizhuowz.com/post-602.html

标签:matt,const,指纹,js,width,浏览器,prototype,data,Math
来源: https://www.cnblogs.com/hongyuyingxiao/p/14306846.html