项目作者: dmnsgn

项目描述 :
Create a RenderingContext (2d, webgl, webgl2, bitmaprenderer, gpupresent), optionally offscreen for possible use in a Worker.
高级语言: HTML
项目地址: git://github.com/dmnsgn/canvas-context.git
创建时间: 2019-02-04T21:10:11Z
项目社区:https://github.com/dmnsgn/canvas-context

开源协议:MIT License

下载


canvas-context

npm version
stability-stable
npm minzipped size
dependencies
types
Conventional Commits
styled with prettier
linted with eslint
license

Create a RenderingContext (2d, webgl, webgl2, bitmaprenderer, webgpu), optionally offscreen for possible use in a Worker.

paypal
coinbase
twitter

See the example and its source with a Worker implementation.

Installation

  1. npm install canvas-context

Usage

  1. import createCanvasContext from "canvas-context";
  2. const { context, canvas } = createCanvasContext("2d", {
  3. width: 100,
  4. height: 100,
  5. offscreen: true,
  6. });

API

Modules


createCanvasContext


Typedefs


ContextType : “2d” | “webgl” | “experimental-webgl” | “webgl2” | “webgl2-compute” | “bitmaprenderer” | “gpupresent” | “webgpu”

A DOMString containing the context identifier defining the drawing context associated to the canvas.



CanvasContextOptions : object

Options for canvas creation. All optional.



CanvasContextReturnValue : object


createCanvasContext

createCanvasContext([contextType], [options]) ⇒ CanvasContextReturnValue

Create a RenderingContext (2d, webgl, webgl2, bitmaprenderer, webgpu), optionally offscreen for possible use in a Worker.

Kind: Exported function

Param Type Default
[contextType] ContextType “2d”
[options] CanvasContextOptions {}

ContextType : “2d” | “webgl” | “experimental-webgl” | “webgl2” | “webgl2-compute” | “bitmaprenderer” | “gpupresent” | “webgpu”

A DOMString containing the context identifier defining the drawing context associated to the canvas.

Kind: global typedef

CanvasContextOptions : object

Options for canvas creation. All optional.

Kind: global typedef
Properties

Name Type Default Description
[width] number 300 Request an initial canvas width.
[height] number 150 Request an initial canvas height.
[offscreen] boolean false Request an offscreen canvas.
[worker] boolean false Handle use in a worker.
[contextAttributes] CanvasRenderingContext2DSettings \ WebGLContextAttributes {} Attributes to be passed to getContext.

CanvasContextReturnValue : object

Kind: global typedef
Properties

Name Type
canvas HTMLCanvasElement \ OffscreenCanvas
context RenderingContext

License

MIT. See license file.