所以我有一个图片上传脚本。 它上传图像并将其保存到服务器上的空间。 我似乎无法理解的是,当用户上传.png时,当它保存在我的服务器上时,我希望它是一个jpg。
任何人都可以帮忙解决这个问题,请不要只是指导我另一个问题,因为我还没有任何工作。这是我的代码示例。
$name = addslashes($_FILES['image']['name']);
$ext = pathinfo($_FILES['image']['name'], PATHINFO_EXTENSION);
$size = $_FILES['image']['size'];
$temp = $_FILES ['image']['tmp_name'];
$error = $_FILES ['image']['error'];
if ($error > 0)
die("Error uploading file! Code $error.");
else
if ($password == "" || $size > 2000000) {
move_uploaded_file($temp, $images.$name);
mysql_query("INSERT INTO image_approval VALUES ('','$description','','$images$name','',NOW())");
echo "Upload complete!";
}else{
echo "Error uploading file";
}
答案 0 :(得分:1)
使用GD,并假设$images
是您存储图片的目录(带斜杠)和$name
- 原始图片的文件名:
$destinationPath = $images . basename($name, $ext) . '.jpg';
$source = imagecreatefrompng($images . $name);
imagejpeg($source, $destinationPath, 75);
imagedestroy($source);
或Imagick:
$image = new Imagick($images . $name);
$image->writeImage($destinationPath);
$image->destroy();
答案 1 :(得分:0)
使用此功能转换上传的图像
// http://stackoverflow.com/a/1201823/358906
// Quality is a number between 0 (best compression) and 100 (best quality)
function png2jpg($originalFile, $outputFile, $quality) {
$image = imagecreatefrompng($originalFile);
imagejpeg($image, $outputFile, $quality);
imagedestroy($image);
}
然后使用unlink()
删除旧图片。
您的代码将类似于:
// After the upload
png2jpg($the_jpg_file_path, $the_png_file_path, 80);
unlink($the_jpg_file_path);