I am trying to download the canvas as image. My canvas height is 500px and width is also 500px but i want to download the image with 700px without change into the canvas size.
My code is as below :
<div class="surface">
<canvas id="myCanvas" height="500" width="500"></canvas>
</div>
<a id="downloadImgLink" onclick="$('#downloadImgLink').attr('href', myCanvas.toDataURL());" download="MyImage.png" href="#" target="_blank" class="btn btn-danger">Download</a>
Above code is download the image with 500px height and width, but i need the image with 700px or any custom size without changes the canvas size.
Is there any possible way to download any canvas as image with custom size, without canvas resize?