Skip to content
Advertisement

Print canvas contents

JavaScript

http://jsfiddle.net/vpetrychuk/LWup5/.

As you can see text in the canvas displays ok, but after clicking “Print” button (and saving page as PDF) output image becomes ugly.

Any chance to print the canvas contents without blur?

Advertisement

Answer

You need to make the actual canvas at print size then scale it on screen using CSS rules.

The browser will always use the internal bitmap size first and adjust that to the print or screen. If the bitmap is then of high resolution you will get better result on the print.

But mind you though, you will need to scale every coordinate and size when you print to the canvas. You will also need to prioritize screen versus print as one of them will look worse (if you prioritize print it will not look super on screen and vica verse).

Here is a modified example of your canvas which is now equivalent of 300 DPI (versus default 96 DPI). You can see it looks about the same on screen but will be much sharper when you print it.

JavaScript

Simply use wrapper functions to do all the math for you:

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement