Ora, dopo trafficando con alcuni esempi di larghezza le mie competenze di algebra classici calci.
Se ho preso la larghezza e diviso per l'altezza, quindi in questo caso, 460/280 in cambio ottenere 1.642 ... che è il rapporto di aspetto di quell'area, ora se guardavo le proporzioni dell'immagine, sapevo che se era maggiore di 1.642 ... quello significava che era più largo dell'area e se le proporzioni dell'immagine era meno che, era più alto.
Così mi è venuta con il seguente,
// Set the Image in question
$image = 'img/gif/b47rz.gif';
// Set the width of the area and height of the area
$inputwidth = 460;
$inputheight = 280;
// Get the width and height of the Image
list($width,$height) = getimagesize($image);
// So then if the image is wider rather than taller, set the width and figure out the height
if (($width/$height) > ($inputwidth/$inputheight)) {
$outputwidth = $inputwidth;
$outputheight = ($inputwidth * $height)/ $width;
}
// And if the image is taller rather than wider, then set the height and figure out the width
elseif (($width/$height) < ($inputwidth/$inputheight)) {
$outputwidth = ($inputheight * $width)/ $height;
$outputheight = $inputheight;
}
// And because it is entirely possible that the image could be the exact same size/aspect ratio of the desired area, so we have that covered as well
elseif (($width/$height) == ($inputwidth/$inputheight)) {
$outputwidth = $inputwidth;
$outputheight = $inputheight;
}
// Echo out the results and done
echo '<img src="'.$image.'" width="'.$outputwidth.'" height="'.$outputheight.'">';
e ha funzionato perfettamente, così ho pensato che avrei condiviso, speriamo che questo aiuta alcune persone
fonte
2012-06-18 19:24:29
ho scritto un plugin jQuery per gestire questo genere di cose, forse vi aiuterà: http://stackoverflow.com/questions/ 18838963/proporzionalmente-scala-iframe-to-fit-in-a-div-using-jquery/25222380 # 25222380 –