From 6c47d7384f43b1fc8b5457317291e43f9484fecc Mon Sep 17 00:00:00 2001 From: awesomeuser Date: Fri, 4 Aug 2023 17:52:32 +0000 Subject: [PATCH] color unnecessary --- index.php | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/index.php b/index.php index bf509f4..f28087b 100644 --- a/index.php +++ b/index.php @@ -97,7 +97,16 @@ @@ -130,9 +139,9 @@ const pen = ctx.createImageData(2, 2); for (let i = 0; i < pen.data.length; i += 4) { - pen.data[i] = 0; - pen.data[i+1] = 0; - pen.data[i+2] = 0; + // pen.data[i] = 0; + // pen.data[i+1] = 0; + // pen.data[i+2] = 0; pen.data[i+3] = 255; }