1
I need to resize to a fixed size the images coming from getass
tried in the html
but the images have different sizes so each one gets one size. I wanted to set a fixed size for this image shows with the set size independent of the original image size.
Code:
<td align="Center">
<?php
echo '<img src="'.$objCheck->getass().'" class="" height="15%" width="15%">';
?>
</td>
There are images that are 90°degrees to the right and some normal. There is no way to standardize this too ?
Just puts width and takes the height HTML, so it automatically resizes according to length.
– Diego Souza
But do not use width=""... in percentage because it does not assume. A fixed length or height, never both so as not to deform the image
– Miguel
See if that reply help you
– David