se ho capito il questione, cambi
aCodice PHP:
$newheight = $ThumbWidth;
$newwidth = $ThumbWidth*$imgratio;
Mi spiego.se vorrei per cambiare tutte le immagini a 10px X 10px allora potrebbe si usareCodice PHP:
if ($imgratio>1){
$newwidth = "LARGHEZZApx";
$newheight = "ALTEZZApx";
}else{
$newheight = "LARGHEZZApx";
$newwidth = "ALTEZZApx";
}
Ciao,Codice PHP:
if ($imgratio>1){
$newwidth = "10px";
$newheight = "10px";
}else{
$newheight = "10px";
$newwidth = "10px";
}
Dennis M.