ID: ".$image['id']."
"; // Image Upload date echo "Last updated: +0 ".$image['upload']."
"; ?>File Type: ".pathinfo($image['imagename'], PATHINFO_EXTENSION)."
"; // Image resolution list($width, $height) = getimagesize($image_path); echo "Image resolution: ".$width."x".$height."
"; function human_filesize($bytes, $decimals = 2) { $sz = 'BKMGTP'; $factor = floor((strlen($bytes) - 1) / 3); return sprintf("%.{$decimals}f", $bytes / pow(1024, $factor)) . @$sz[$factor]; } echo "File size: ".human_filesize(filesize($image_path), 2)."
"; ?>