I have a png image in a html page. Is it possible to display it with its original resolution, regardles of the screen DPI, Windows display scale factor or any other settings ?
For example, my png is 1543 x 780 pixels. If I use this:
<img src="screenshot-00.png" style="width: 1543px; height: 780px">
the image is scaled with 1.4x because I have Custom Scalling in Windows set to 140%.
I want the browser to stop any kind of scalling on images I marked, because my image has sharp edges and when is scaled, they are blured.