What image formats are supported by CANVAS in html5?

Like .jpg or .jpeg, image formats are supported by Canvas in html5.?

I want to say which image formats are directly displayed inside the canvas by calling context.drawImage (image, dx, dy, dw.dh) ...

THANKS IN EXTENSION

+6
source share
1 answer

Supported images will depend on your browser. Don't have tif support? And do you use Chrome?

Here is a list of image formats supported by the browser.

You can either convert your image types, or try to find plugins to support more types of images.

+9
source

Source: https://habr.com/ru/post/921121/


All Articles