autofit-canvas
v0.3.2
Published
Fit image into HTML canvas depends on image's aspect ratio and orientation
Downloads
2
Maintainers
Readme
How to use:
import Canvas from 'autofit-canvas';
const img = document.querySelector('img');
const canvas = Canvas(img, { width: 600, height: 600 });
const canvasDataURL = Canvas.toDataURL();
img.src = canvasDataURL;