Skip to main content
Module

x/skia_canvas/mod.ts>Canvas

Fast HTML Canvas API implementation for Deno using Skia.
Go to Latest
class Canvas
Re-export
import { Canvas } from "https://deno.land/x/skia_canvas@0.5.1/mod.ts";

Canvas is an offscreen surface that can be drawn to.

Internally it uses Skia's SkSurface and raster backend.

API is mostly compatible with the Web's OffscreenCanvas API, however we also have some non-standard methods such as save.

Constructors

new
Canvas(
width: number,
height: number,
gpu?,
)

Properties

readonly
_unsafePointer
readonly
gpu

Whether Canvas is GPU backed

height: number
width: number

Methods

encode(format?: ImageFormat, quality?)

Encode the canvas image into a buffer in specified format and quality.

Only for GPU backed: Flushes all draw calls, call before swap

readPixels(
x?,
y?,
width?: number,
height?: number,
into?: Uint8Array,
colorSpace?: ColorSpace,
)

Read pixels from the canvas into a buffer.

resize(width: number, height: number)
save(
path: string,
format?: ImageFormat,
quality?,
)

Save the canvas image to a file encoded in specified format and quality.

Quality is a factor between 0 and 100, where 100 is the best quality. It represents different factors for different formats.

toDataURL(format?: ImageFormat, quality?)