Exciting release!Introducing "safe npm". Learn more
Socket
Log inDemoInstall

@netless/canvas-polyfill

Package Overview
Dependencies
0
Maintainers
3
Versions
4
Issues
File Explorer

Advanced tools

@netless/canvas-polyfill

a polyfill for canvas getTransform, ellipse, resetTransform API

    0.0.4latest
    GitHub

Version published
Maintainers
3
Weekly downloads
669
decreased by-20.17%

Weekly downloads

Readme

Source

@netless/canvas-polyfill

@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.

different from these

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.

Installation

yarn install @netless/canvas-polyfill # or npm install @netless/canvas-polyfill

Use:

import "@netless/canvas-polyfill";

Publish

npm publish --access public

the implement for getTransform

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; }

Keywords

FAQs

Last updated on 24 Sep 2020

Did you know?

Socket installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.

Install Socket
Socket
support@socket.devSocket SOC 2 Logo

Product

  • Package Issues
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc