fix(core): remove extra console log (#7160)

This commit is contained in:
EYHN 2024-06-06 07:39:59 +00:00
parent b99b964a78
commit 6abb401a2c
No known key found for this signature in database
GPG Key ID: 46C9E26A75AB276C

View File

@ -65,17 +65,6 @@ function drawImageFit(
const ratio = Math.max(hRatio, vRatio);
const centerShift_x = (size - img.width * ratio) / 2;
const centerShift_y = (size - img.height * ratio) / 2;
console.log(ctx.canvas);
ctx.canvas.dataset['drawed'] = 'true';
console.log(
'drawImageFit',
img.width,
img.height,
size,
ratio,
centerShift_x,
centerShift_y
);
ctx.drawImage(
img,
0,