Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
canvas-5-polyfill
Advanced tools
Canvas 5 Polyfill is a Javascript polyfill library to fill in new features for HTML 5 Canvas that browsers may not have implemented yet, such as Path2D objects and ellipse() on CanvasRenderingContext2D.
Canvas 5 Polyfill uses Bower to make installation easy:
bower install --save canvas-5-polyfill
You can also get the code directly at GitHub.
<html>
<head>
<title>Test Canvas Polyfill</title>
<script
src='bower_components/canvas-5-polyfill/canvas.js'
type='text/javascript'></script>
</head>
<body>
<canvas id=ID width=500 height=500>
<script type='text/javascript' charset='utf-8'>
var ctx = document.getElementById('ID').getContext('2d');
var p = new Path2D();
p.moveTo(100, 10);
p.lineTo(10, 100);
ctx.strokeStyle = '#555';
ctx.lineWidth = 10;
ctx.stroke(p);
</script>
</body>
</html>
Canvas 5 Polyfill adds the following classes and methods to an existing HTML Canvas implementation if they are missing, if they are not missing the native implementations are used:
The polyfill adds the following methods to CanvasRenderingContext2D:
void stroke(Path2D path);
void fill(Path2D path, optional CanvasFillRule fillRule = "nonzero");
void clip(Path2D path, optional CanvasFillRule fillRule = "nonzero");
boolean isPointInPath(Path2D path, double x,
double y, optional CanvasFillRule fillRule = "nonzero");
boolean isPointInStroke(Path2D path, double x, double y);
void ellipse( double x, double y, double radiusX, double radiusY,
double rotation, double startAngle, double endAngle,
optional boolean anticlockwise = false);
It also adds Path2D with the following constructors:
Path2D()
Path2D(Path2D path, optional CanvasFillRule fillRule = "nonzero"),
Path2D(DOMString d)
Where Path2D has the following methods:
void addPath(Path2D path, SVGMatrix? transformation);
void closePath();
void moveTo(double x, double y);
void lineTo(double x, double y);
void quadraticCurveTo( double cpx, double cpy, double x, double y);
void bezierCurveTo( double cp1x, double cp1y, double cp2x, double cp2y,
double x, double y);
void arcTo(double x1, double y1, double x2, double y2, double radius);
void arcTo(double x1, double y1, double x2, double y2, double radiusX,
double radiusY, double rotation);
void rect(double x, double y, double w, double h);
void arc(double x, double y, double radius, double startAngle,
double endAngle, optional boolean anticlockwise = false);
void ellipse(double x, double y, double radiusX, double radiusY,
double rotation, double startAngle, double endAngle,
optional boolean anticlockwise = false);
With this polyfill installed, the calls to context.clip(path), context.isPointInPath(path, x, y) and context.isPointInStroke(path, x, y) all affect the current path.
When using the polyfill the best approach is to move strictly to using Path2D objects to describe paths and then use the path enabled calls on the context, such as ctx.fill(path). Do not mix and match such calls.
FAQs
Polyfill for HTML 5 Canvas features.
The npm package canvas-5-polyfill receives a total of 3,789 weekly downloads. As such, canvas-5-polyfill popularity was classified as popular.
We found that canvas-5-polyfill demonstrated a not healthy version release cadence and project activity because the last version was released 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.