🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

context-filter-polyfill

Package Overview
Dependencies
Maintainers
1
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

context-filter-polyfill

Polyfills the `CanvasRenderingContext2d` and `OffscreenCanvasRenderingContext2D` capability of adopting CSS3 filters on canvas contexts (at least partially).

0.3.23
latest
Source
npm
Version published
Weekly downloads
6.7K
-7.97%
Maintainers
1
Weekly downloads
 
Created
Source

context-filter-polyfill

Build Status NPM Version NPM Install Size

Examples: https://davidenke.github.io/context-filter-polyfill/

Polyfills CanvasRenderingContext2d and OffscreenCanvasRenderingContext2d capability of adopting CSS3 filters on canvas contexts (at least partially).

Right now only WebKit misses an implementation (Bugzilla #198416) all engines support it natively, despite Safari not having shipped it yet in the stable release channel.

Installation

Add the polyfill to your page via script tag from a CDN:

<head>
  <script src="https://cdn.jsdelivr.net/npm/context-filter-polyfill/dist/index.min.js"></script>
</head>

Or from npm:

npm install context-filter-polyfill

... and import it in your code:

import 'context-filter-polyfill';

Changes in 0.3.14

Since version 0.3.14 the method of how the polyfill is applied has been reworked. It now polyfills the filter on each drawing function call instead of applying it once on the context in the end.

This results in more accurate behavior compared to the previous implementation.

The polyfilled and native results can be compared with a non-WebKit browser like Firefox or Chrome.

Supported filters

See it in action

Just open the integration demo on Safari / iOS.

License

MIT

FAQs

Package last updated on 09 Jun 2025

Did you know?

Socket

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.

Install

Related posts