diff --git a/src/composables/useImageCropper.js b/src/composables/useImageCropper.js index a52db586..97071043 100644 --- a/src/composables/useImageCropper.js +++ b/src/composables/useImageCropper.js @@ -83,9 +83,6 @@ export function cropImage( cropCanvas.height = cropH; const ctx = cropCanvas.getContext('2d'); - ctx.fillStyle = '#ffffff'; - ctx.fillRect(0, 0, cropW, cropH); - ctx.drawImage(source, -cropX, -cropY); return new Promise((resolve) => {