Hello,
I used succesfully html2canvas but suddenly it scales my canvas at 1.5 and I do not know why because I did not specify this. I just want a normal render. So when I use Inspect tool on Chrome it shows me the message below. I do not want any scale.
148ms html2canvas: Canvas renderer initialized (1512x1133 at 943.1469116210938,323.84869384765625) with scale 1.5
I believe that's because the default render scale is your device pixel ratio, which in your case seems to be 1.5. you can pass in {scale: 1}
in the config
Exactly what jamespantalones said.
Most helpful comment
I believe that's because the default render scale is your device pixel ratio, which in your case seems to be 1.5. you can pass in
{scale: 1}
in the config