fix sizing image code example
Example 1: how to contain image size
overflow: 'hidden',
backgroundSize : 'contain',
Example 2: CSS shrink image
<div style="width: 200px; height: 200px;">
<img src="imagen\imagen1.jpg" style="width: 100px; height: 100px;"/>
</div>