我是编程的新手,这是我第一次接触PHP。我正在构建一个移动网络应用程序,用户可以在社交活动中将图片上传到网站。 我使用了W3schools的PHP脚本(请不要讨厌我,但它适用于我有限的知识)。 因为它是一个移动应用程序,我需要添加额外的功能,但无法弄清楚如何使用大量脚本和我缺乏知识。 在图像上传到脚本之前,我想首先执行以下操作。
1)将尺寸缩小到500px宽并“自动”高度以保持图片比例。
2)压缩文件,使其更适合文件化以便在移动设备上进行解析(永远不会打印)并加快通过网络网络上传的速度。
3)通过EXIF数据确保显示正确。现在,iOS,Android和Windows都以不同的方式显示肖像和风景图像......我需要一致性
这是我的代码,...我已经说过我认为它应该去哪里,但我不完全确定。 此代码显示在显示图像的页面上的弹出div标签中。
<?php
$target_dir = "uploads/";
$target_dir = $target_dir . basename( $_FILES["uploadFile"]["name"]);
$target_dir1 = $target_dir . basename( $_FILES["uploadFile"]["tmp_name"]);
$fileTmpLoc = $_FILES["uploadFile"]["tmp_name"];
$uploadOk=1;
// Check if Upload is done without file.
if (!$fileTmpLoc) { // if file not chosen
echo '<script language="javascript">';
echo 'alert("Please browse for a file before clicking the upload button")';
echo '</script>';
echo '<script language="javascript">';
echo 'window.history.back()';
echo '</script>';
}
// Check if file already exists
if (file_exists($target_dir . $_FILES["uploadFile"]["name"])) {
echo "Sorry, file already exists.";
$uploadOk = 0;
}
// Check file size
if ($uploadFile_size > 500000) {
echo "Sorry, your file is too large.";
$uploadOk = 0;
}
//Check no php files
if ($uploadFile_type == "text/php") {
echo "Sorry, no PHP files allowed.";
$uploadOk = 0;
}
// Check if $uploadOk is set to 0 by an error
if ($uploadOk==0) {
echo "Sorry, your file was not uploaded.";
// if everything is ok, try to upload file
} else {
//Reduce file to 500px wide
//Compress file
//Rotate file with EXIF data to properly display.
if (move_uploaded_file($_FILES["uploadFile"]["tmp_name"], $target_dir1)) {
echo header( 'Location: gallery.php' ) ;
} else {
echo "Sorry, there was an error uploading your file.";
}
}
?>
感谢您的帮助,如上所述,这是我第一次接触PHP。
答案 0 :(得分:0)
有一个名为SimpleImage.php的免费实用工具,可在http://www.white-hat-web-design.co.uk/articles/php-image-resizing.php获得,它将处理调整大小和压缩,可能是一个很好的起点。他们的页面上有很多关于如何使用它的例子,下面是我如何使用它来将上传的图像调整到一定宽度的示例:
require_once("SimpleImage.php");
function createThumbnail($cat_code) {
// Check for full size product image
$fname = $this->getImageFilename($cat_code);
if($fname === "") {
echo "<b>createThumbnail: No image file found for " . $cat_code . "!</b><br>";
return false;
}
$thumb = "images/t/" . $cat_code . ".100.jpg";
if($fname !== "") {
$image = new SimpleImage();
$image->load($fname);
$image->resizeToWidth(100);
$image->save($thumb);
}
return true;
}
function process_upload($file, $cat_code, $format, $price=NULL) {
$imageFileExtensions = array('jpg', 'gif', 'png');
$target_path = "uploads/";
$target_path1 = $target_path . basename($file['name']);
$path_info1 = pathinfo($target_path1);
$ext = $path_info1['extension'];
if(move_uploaded_file($file['tmp_name'], $target_path1)) {
if(rename($target_path1, $main_path1)) {
echo "File ". $file['name'] . " verified and uploaded.<br>";
//Create thumbnail if this is an image file
if(in_array($ext, $imageFileExtensions))
$createThumbnail($cat_code);
} else {
echo "<b>ERROR renaming " . $file['name'] . "</b><br>";
}
}
else
echo "<b>move_uploaded_file(" . $file['tmp_name'] . ", $target_path1) failed</b><br>\n";
}
要执行旋转,只需向使用imagerotate()
的SimpleImage类添加另一个函数,例如:
function rotate($angle, $bgd_color, $ignore_transparent=0) {
imagerotate($this->image, $angle, $bgd_color, $ignore_transparent);
}
imagerotate的php.net页面提供了有关函数参数的更多详细信息。
要使用EXIF数据,我使用另一个名为PelJpeg.php的免费实用工具,可在http://lsolesen.github.io/pel/获得。如果你谷歌PelJpeg.php有很多关于如何使用它的例子。它可能会变得复杂,因为正如您所提到的,每个平台处理图像和元数据的方式略有不同,因此您必须进行大量测试,以查看在各种平台上处理相同的内容,哪些内容不同,以及如何跨越这些差距。