diff --git a/src/Silhouette.js b/src/Silhouette.js index 56c5c55bc..c2a348a6e 100644 --- a/src/Silhouette.js +++ b/src/Silhouette.js @@ -175,7 +175,7 @@ class Silhouette { const canvas = Silhouette._updateCanvas(); canvas.width = width; canvas.height = height; - const ctx = canvas.getContext('2d'); + const ctx = canvas.getContext('2d', {willReadFrequently: true}); ctx.clearRect(0, 0, width, height); ctx.drawImage(this._lazyData, 0, 0, width, height);