Graphics2D icon indicating copy to clipboard operation
Graphics2D copied to clipboard

Add dpi support

Open keyten opened this issue 8 years ago • 0 comments

ctx.dpi = function(num){
 this.canvas.style.width = this.canvas.width * num;
 this.canvas.style.height = this.canvas.height * num;
 this.context.scale(1 / num);
}

smth like this

keyten avatar Nov 30 '17 10:11 keyten