我有一个AJAX表单,可以发送4张图片和PHP表单处理程序。可接受的格式为.gif,.png,.jpg或.jpeg。我在发送表单之前使用javascript检查图像文件类型。
现在,在PHP中我有这段代码:
while($x <= 4) {
$target_dir = "files/";
$target_file = $target_dir . basename($_FILES["fileUpload".$x]["name"]);
$imageFileType = pathinfo($target_file,PATHINFO_EXTENSION);
if (move_uploaded_file($_FILES["fileUpload".$x]["tmp_name"], $target_file)) {
$filename = date("d-m-Y---H-i-s---").rand(10000,99999);
$oldfile = $target_file;
$newfile = $target_dir . $filename . "." . $imageFileType;
rename($oldfile, $newfile);
$file[$x] = $filename . "." . $imageFileType;
$fileCounter++;
}
$x++;
}
有些人会上传大图片文件,我想自动将它们调整到最大宽度/高度,而不会裁剪图像。我怎么能用PHP做到这一点?
答案 0 :(得分:5)
您可以使用php GD库。 在重命名函数后的if条件中,您可以编写以下代码:
list($width, $height) = getimagesize($file);
$ratio = $width / $height;
if( $ratio > 1) {
$resized_width = 500; //suppose 500 is max width or height
$resized_height = 500/$ratio;
}
else {
$resized_width = 500*$ratio;
$resized_height = 500;
}
if ($imageFileType == 'png') {
$image = imagecreatefrompng($newfile);
} else if ($imageFileType == 'gif') {
$image = imagecreatefromgif($newfile);
} else {
$image = imagecreatefromjpeg($newfile);
}
$resized_image = imagecreatetruecolor($resized_width, $resized_height);
imagecopyresampled($resized_image, $image, 0, 0, 0, 0, $resized_width, $resized_height, $width, $height);
答案 1 :(得分:0)
尝试在php下使用gzip库,除非你在
之前判断文件的大小if ($_FILES["fileToUpload"]["size"] > 500000)