
Security News
Socket Integrates With Bun 1.3’s Security Scanner API
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
@netless/canvas-polyfill
Advanced tools
a polyfill for canvas getTransform, ellipse, resetTransform API
@netless/canvas-polyfill
is a polyfill for resetTransform
,ellipse
,getTransform
. It is inspired by canvas-5-polyfill, canvas-currentTransform.
This polyfill can work in Android 19 WebView and iOS 10 WKWebView.
canvas-5-polyfill implement polyfill for Path2D
objects and ellipse()
on CanvasRenderingContext2D
which doesn't implement getTransform
. @netless/canvas-polyfill
doesn't implement Path2D
, but implement getTransform
.
canvas-currentTransform 's setTransform
has some problem. @netless/canvas-polyfill
just fix it and canvas-currentTransform
not implement getTransform
. But the currentTransform
's getter
is same as getTransform
.
yarn install @netless/canvas-polyfill
# or
npm install @netless/canvas-polyfill
Use:
import "@netless/canvas-polyfill";
npm publish --access public
The matrix calculation is just copy from canvas-currentTransform for currentTransform
. I just fix setTransform
method which has two forms of parameters:
interface CanvasTransform {
setTransform(a: number, b: number, c: number, d: number, e: number, f: number): void;
setTransform(transform?: DOMMatrix2DInit): void;
}
FAQs
a polyfill for canvas getTransform, ellipse, resetTransform API
We found that @netless/canvas-polyfill demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Security News
Python 3.14 adds template strings, deferred annotations, and subinterpreters, plus free-threaded mode, an experimental JIT, and Sigstore verification.
Security News
Former RubyGems maintainers have launched The Gem Cooperative, a new community-run project aimed at rebuilding open governance in the Ruby ecosystem.