<canvas id='master' width='500' height='500'></canvas>
<canvas id='pid' width='200' height='200'></canvas>
<canvas id='di' width='200' height='200'></canvas>
var master = document.getElementById('master');
var masterctx = master.getContext('2d');
var pid = document.getElementById('pid').getContext('2d');
var di = document.getElementById('di').getContext('2d');
masterctx.fillRect(0,0,50,50);
masterctx.fillStyle = "red";
masterctx.fillRect(50,50,100,100);
di.drawImage(master,0,0);
di.drawImage(master,0,0,200,200,0,0,200,200);
let imgData = masterctx.getImageData(0,0,500,500);
pid.putImageData(imgData,0,0);
let imgData = masterctx.getImageData(0,0,200,200);
pid.putImageData(imgData,0,0);
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
DrawImage | |
DrawImage (subrectangle) | |
PutImageData | |
PutImageData (subrectangle) |
Test name | Executions per second |
---|---|
DrawImage | 694427.1 Ops/sec |
DrawImage (subrectangle) | 705198.9 Ops/sec |
PutImageData | 1470.3 Ops/sec |
PutImageData (subrectangle) | 8690.5 Ops/sec |
Let's break down what's being tested in the provided benchmark.
Benchmark Purpose: The benchmark is designed to compare the performance of two approaches for rendering large images on a canvas:
drawImage
method, which draws an image from its source canvas onto the target canvas.putImageData
method, which copies pixel data from one image data object to another.Test Cases:
The benchmark consists of four test cases:
get imageData(0, 0, 500, 500)
.Library and Special Features:
Now, let's discuss the pros and cons of each approach:
DrawImage:
Pros:
Cons:
putImageData
for very large imagesPutImageData:
Pros:
drawImage
for very large imagesCons:
drawImage
Other Considerations:
Alternatives:
drawImage
with alpha or blend modes, may be compared in alternative benchmarks.