diff --git a/custom.js b/custom.js index e97c508..b2baf03 100644 --- a/custom.js +++ b/custom.js @@ -61,12 +61,7 @@ const svgObsidianFix = () => { canvas.height = image.height; const ctx = canvas.getContext("2d"); ctx.drawImage(image, 0, 0); - const imageData = ctx.getImageData( - 0, - 0, - Math.floor(canvas.width), - Math.floor(canvas.height) - ); + const imageData = ctx.getImageData(0, 0, canvas.width, canvas.height); const pixelData = imageData.data; const colors = [];