Skip to main content
Module

x/canvas/mod.ts>EmulatedCanvas2D

Canvas API for Deno, ported from canvaskit-wasm (Skia).
Go to Latest
interface EmulatedCanvas2D
import { type EmulatedCanvas2D } from "https://deno.land/x/canvas@v1.0.0/mod.ts";

Methods

dispose(): void

Cleans up all resources associated with this emulated canvas.

decodeImage(bytes: ArrayBuffer | Uint8Array): SkImage

Decodes an image with the given bytes.

getContext(type: string): EmulatedCanvas2DContext | null

Returns an emulated canvas2d context if type == '2d', null otherwise.

loadFont(bytes: ArrayBuffer | Uint8Array, descriptors: object): void

Loads the given font with the given descriptors. Emulates new FontFace().

makePath2D(str?: string): EmulatedPath2D

Returns an new emulated Path2D object.

toDataURL(codec?: string, quality?: number): string

Returns the current canvas as a base64 encoded image string.