The CanvasRenderingContext2D
.fill()
method of the Canvas 2D API fills the current or given path with the current fillStyle
.
void ctx.fill([fillRule]); void ctx.fill(path [, fillRule]);
fillRule
"nonzero"
: The non-zero winding rule. Default rule."evenodd"
: The even-odd winding rule.path
Path2D
path to fill.This example fills a rectangle with the fill()
method.
<canvas id="canvas"></canvas>
const canvas = document.getElementById('canvas'); const ctx = canvas.getContext('2d'); ctx.rect(10, 10, 150, 100); ctx.fill();
This example saves some intersecting lines to a Path2D object. The fill()
method is then used to render the object to the canvas. A hole is left unfilled in the object's center by using the "evenodd"
rule; by default (with the "nonzero"
rule), the hole would also be filled.
<canvas id="canvas"></canvas>
const canvas = document.getElementById('canvas'); const ctx = canvas.getContext('2d'); // Create path let region = new Path2D(); region.moveTo(30, 90); region.lineTo(110, 20); region.lineTo(240, 130); region.lineTo(60, 130); region.lineTo(190, 20); region.lineTo(270, 90); region.closePath(); // Fill path ctx.fillStyle = 'green'; ctx.fill(region, 'evenodd');
Specification | Status | Comment |
---|---|---|
HTML Living Standard The definition of 'CanvasRenderingContext2D.fill' in that specification. | Living Standard |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | Yes | 12 | Yes | Yes | Yes | Yes |
Path parameter |
Yes | Yes | 31 | No | Yes | No |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
Path parameter |
? | ? | Yes | 31 | ? | ? | ? |
CanvasRenderingContext2D
CanvasRenderingContext2D.fillStyle
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/fill