Limitar peso imagen php
Miércoles, 13 de Mayo de 2009Función para saber el peso del archivo.
filesize ( string $nombre_archivo );
Función para saber el peso del archivo.
filesize ( string $nombre_archivo );
function imageResize($width, $height, $target) {
//takes the larger size of the width and height and applies the
formula accordingly…this is so this script will work
dynamically with any size image
if ($width > $height) {
$percentage = ($target / $width);
} else {
$percentage = ($target / $height);
}
//gets the new value and applies the percentage, then rounds the value
$width = round($width * $percentage);
$height = round($height * $percentage);
//returns the new sizes in html image tag format…this is so you
can plug this function inside an image tag and just get the
return “width=\”$width\” height=\”$height\”";
}
Código:
<a href=”pagina.htm” target=”_blank”
onclick=”window.open(this.href,this.target,’width=400, height=250,top=120,left=100,toolbar=no,location=no,status=no, menubar=no’);return false;”>Mi popup mal hecho</a>
Parametros: