
Security News
npm ‘is’ Package Hijacked in Expanding Supply Chain Attack
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.
context-filter-polyfill
Advanced tools
Polyfills the `CanvasRenderingContext2d` and `OffscreenCanvasRenderingContext2D` capability of adopting CSS3 filters on canvas contexts (at least partially).
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.
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';
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.
url
✗blur
✔brightness
✔contrast
✔drop-shadow
✔grayscale
✔hue-rotate
✔invert
✔none
✔opacity
✔saturate
✔sepia
✔Just open the integration demo on Safari / iOS.
FAQs
Polyfills the `CanvasRenderingContext2d` and `OffscreenCanvasRenderingContext2D` capability of adopting CSS3 filters on canvas contexts (at least partially).
We found that context-filter-polyfill demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.
Security News
A critical flaw in the popular npm form-data package could allow HTTP parameter pollution, affecting millions of projects until patched versions are adopted.
Security News
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.