skia_canvas
skia_canvas copied to clipboard
Benchmarks
It would be really nice to see some benchmarks in comparison with deno-canvas. If you are accepting PRs, I would love to contribute.
PRs are always welcome! You can uncomment the deno-canvas code in bench/deno.js to compare performance of both of these libraries using deno task bench. Additionally, we should also add more benchmarks which test other APIs such as gradients and images.
Sounds good, I'll check it out when I get the chance (probably tomorrow)
I found an old video editor project that rendered scenes to images via deno-canvas. I just switched to skia-canvas and it's unbelievable. To render a 5 second video, the old one took 2m 51s (171044ms). Skia-canvas took 41s (40735ms).
Thats really impressive! How does it compare to Node.js alternatives?