deno.land / x / skia_canvas@0.5.8 / test / svg.ts
123456789101112131415161718192021222324252627282930313233import { SvgCanvas } from "../mod.ts";
const canvas = new SvgCanvas(120, 120, { noPrettyXml: true,});const ctx = canvas.getContext();
ctx.fillStyle = "white";ctx.fillRect(0, 0, 120, 120);
ctx.lineWidth = 10;
// Wallctx.strokeRect(75, 140, 150, 110);
// Doorctx.fillRect(130, 190, 40, 60);
// Roofctx.beginPath();ctx.moveTo(50, 140);ctx.lineTo(150, 60);ctx.lineTo(250, 140);ctx.closePath();ctx.stroke();
canvas.complete();
canvas.save("./testdata/test.svg");canvas.save("./testdata/test2.svg");
console.log("done");
Version Info