Spaces:
Runtime error
Runtime error
File size: 5,703 Bytes
ec3efd7 d8118e8 ec3efd7 b7b124d ec3efd7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 |
<script lang="ts">
import { nanoid } from 'nanoid';
import PxBrush from 'px-brush';
import { onMount } from 'svelte';
import type { Brush } from '../types';
import UndoIcon from '$lib/Icons/Undo.svelte';
import { COLOR_LIST } from '../data';
import { selectedBrush, selectedImage, currentCanvas, drawingLayers } from '$lib/store';
let canvas: HTMLCanvasElement;
let brush: HTMLCanvasElement;
let brushCtx: CanvasRenderingContext2D;
let ctx: CanvasRenderingContext2D;
let startPosition: { x: number; y: number } = { x: 0, y: 0 };
let pxBrush: PxBrush;
$: {
if (brushCtx && $selectedBrush) {
setBrush($selectedBrush);
brush.style.top = `${10 + $selectedBrush.size / 2}px`;
brush.style.left = `${10 + $selectedBrush.size / 2}px`;
}
}
$: {
if ($selectedImage) {
drawImage(ctx, $selectedImage);
$drawingLayers = new Map();
}
}
onMount(() => {
ctx = canvas.getContext('2d') as CanvasRenderingContext2D;
brushCtx = brush.getContext('2d') as CanvasRenderingContext2D;
window.devicePixelRatio = 1;
pxBrush = new PxBrush(canvas);
canvas.style.height = 'unset';
canvas.style.width = 'unset';
$currentCanvas = canvas;
clearCanvas(ctx);
});
let mouseDown: boolean = false;
let currLayerId: string;
function pointerEnter() {
// brush.hidden = false;
}
function pointerOut() {
brush.style.top = `${10 + $selectedBrush.size / 2}px`;
brush.style.left = `${10 + $selectedBrush.size / 2}px`;
mouseDown = false;
}
function pointerDown(e: MouseEvent) {
mouseDown = true;
startPosition = getPosition(canvas, e);
pxBrush.draw({
from: startPosition,
to: startPosition,
size: $selectedBrush.size,
color: $selectedBrush.color
});
currLayerId = nanoid();
drawingLayers.update((map) => {
map.set(currLayerId, {
brush: $selectedBrush,
points: [{ from: startPosition, to: startPosition }]
});
return map;
});
// drawLayers();
}
function pointerMove(e: MouseEvent) {
const position = getPosition(canvas, e);
brush.style.top = `${e.offsetY}px`;
brush.style.left = `${e.offsetX}px`;
if (!mouseDown) {
return;
}
pxBrush.draw({
from: startPosition,
to: position,
size: $selectedBrush.size,
color: $selectedBrush.color
});
drawingLayers.update((map) => {
const currentLayer = map.get(currLayerId);
currentLayer?.points.push({
from: startPosition,
to: position
});
return map;
});
startPosition = position;
// drawLayers();
}
function getPosition(canvas: HTMLCanvasElement, event: MouseEvent) {
const rect = canvas.getBoundingClientRect();
return {
x: (event.clientX - rect.left) * (canvas.width / rect.width),
y: (event.clientY - rect.top) * (canvas.height / rect.height)
};
}
function setBrush(sBrush: Brush) {
const { size, color } = sBrush;
brush.width = size;
brush.height = size;
// brushCtx.clearRect(0, 0, brush.width, brush.height);
// brushCtx.beginPath();
brushCtx.fillStyle = color;
brushCtx.arc(size / 2, size / 2, size / 2, 0, 2 * Math.PI);
brushCtx.fill();
}
function clearCanvas(ctx: CanvasRenderingContext2D) {
ctx.fillStyle = '#46e483';
ctx.fillRect(0, 0, ctx.canvas.width, ctx.canvas.height);
}
function drawPixels(ctx: CanvasRenderingContext2D) {
COLOR_LIST.forEach((c, i) => {
pxBrush.draw({
from: { x: i * 2, y: ctx.canvas.height },
to: { x: i * 2, y: ctx.canvas.height - 3 },
size: 2,
color: `rgb(${c.color.join(',')})`
});
});
}
function drawImage(ctx: CanvasRenderingContext2D, img: HTMLImageElement | HTMLCanvasElement) {
ctx.drawImage(img, 0, 0, ctx.canvas.width, ctx.canvas.height);
}
function rollBack() {
if ($drawingLayers.size <= 0) {
return;
}
// clear current layer
const ids = Array.from($drawingLayers.keys());
drawingLayers.update((map) => {
map.delete(ids[ids.length - 1]);
return map;
});
drawLayers(ctx);
// drawPixels(ctx);
}
function drawLayers(ctx: CanvasRenderingContext2D) {
const tempcanvas = document.createElement('canvas');
tempcanvas.width = 512;
tempcanvas.height = 512;
window.devicePixelRatio = 1;
const pxBrush = new PxBrush(tempcanvas);
clearCanvas(ctx);
if ($selectedImage) {
drawImage(ctx, $selectedImage);
}
Array.from($drawingLayers.values()).forEach((layer) => {
// clear temp canvas
layer.points.forEach((point, i) => {
pxBrush.draw({
from: point.from,
to: point.to,
size: layer.brush.size,
color: layer.brush.color
});
});
});
requestAnimationFrame(() => {
drawImage(ctx, tempcanvas);
});
}
</script>
<div>
<div class="relative overflow-clip">
<canvas
bind:this={canvas}
class="canvas"
width="512"
height="512"
on:touchmove={(e) => e.preventDefault()}
on:pointerenter={pointerEnter}
on:pointerup={pointerOut}
on:pointerleave={pointerOut}
on:pointercancel={pointerOut}
on:pointerout={pointerOut}
on:pointermove={pointerMove}
on:pointerdown={pointerDown}
/>
<canvas bind:this={brush} class="brush" width="10" height="10" />
<span class="label">{$selectedBrush?.label} </span>
<button
class="absolute bottom-0 left-0 p-3"
on:click|preventDefault={() => rollBack()}
disabled={$drawingLayers.size <= 0}><UndoIcon /></button
>
</div>
</div>
<style lang="postcss" scoped>
.canvas {
@apply max-w-full w-full z-0 border border-gray-500 aspect-[512/512];
}
.brush {
@apply z-10 absolute pointer-events-none -translate-x-1/2 -translate-y-1/2;
}
.label {
@apply px-2 text-base z-20 absolute top-0 left-0 pointer-events-none text-white select-none;
color: white;
font-weight: bolder;
-webkit-text-stroke: 1px black;
-webkit-text-fill-color: white;
}
</style>
|