Toggle navigation
MeasureThat.net
Create a benchmark
Tools
Feedback
FAQ
Register
Log In
Run results for:
Canvas fillText / strokeText
Go to the benchmark
Embed
Embed Benchmark Result
Run details:
User agent:
Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Mobile Safari/537.36
Browser:
Chrome Mobile 137
Operating system:
Android
Device Platform:
Mobile
Date tested:
11 months ago
Test name
Executions per second
fillText
359885.8 Ops/sec
strokeText
295104.6 Ops/sec
HTML Preparation code:
<canvas id="canvas1" width="400" height="400"></canvas> <style> canvas { border: 1px solid black; } </style> <script> var canvas = document.getElementById('canvas1'); var ctx = canvas.getContext('2d'); </script>
Tests:
fillText
ctx.fillText("a", 10, 10);
strokeText
ctx.strokeText("a", 10, 10);