When scaling down an image, the body doesn't interpret the "new" size of the image and displays the scroll. Here is an example and a sample code that demonstrates the issue:
<body>
<img src="https://upload.wikimedia.org/wikipedia/commons/2/24/Willaerts_Adam_The_Embarkation_of_the_Elector_Palantine_Oil_Canvas-huge.jpg" style='transform-origin:top left;transform:scale(0.05)' />
</body>
My code is much more complex as you can imagine and simply hiding the scroll or pre-defining the height or width of the body is not an option. I also need to use transforms and can't define the size of the image.
How can I have a body that interprets the new size of the image instead of the bigger size?