This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** Too slowwww **/ | |
const setIconColor = function(){ | |
let img = new Image(); | |
img.src = "icons/binoculars_white.png"; | |
img.onload = function() { | |
var canvas = document.createElement("canvas"); | |
var ctx = canvas.getContext("2d"); | |
ctx.drawImage(img, 0, 0); | |
ctx.globalCompositeOperation = "source-in"; | |
ctx.fillStyle = "#09f"; //any color |