- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我需要这方面的帮助,我花了一整天的时间尝试用 PHP 调整图片的大小:(((。
我找到了一个好主题Resize the image-file before uploading; Could we overwrite the temp file & upload?
但是,当我尝试为我使用我的 add.php 时,会返回一个像这样的白色小方 block :
我的图片在我的文件夹中没有调整大小。
我可能忘记更改代码中的某些内容或无法使用但是,我真的需要帮助谢谢。
require_once('../connexion.php');
extract($_POST);
// This will count total images selected.
$TotalImage = count($_FILES['image']['name']);
$domaine = isset($_POST['domaine']) ? $_POST['domaine'] : null;
for($i = 0;$i<$TotalImage;$i++)
{
$tempFile = $_FILES['image']['tmp_name'][$i];
$image_name = $_FILES['image']['name'][$i];
$ext = strtolower(substr(strrchr($image_name, '.'), 1));
$target_path = $_SERVER['DOCUMENT_ROOT'].'/AprimeWeb/img/sliders/'.$domaine .'/'.$image_name;
$image_properties = getimagesize($tempFile);
$image_width = $image_properties[0];
$image_height = $image_properties[1];
$percent = 0.5; //Percentage by which the image is going to be resized
$newWidth = $image_width * $percent;
$newHeight = $image_height * $percent;
if ($ext == "jpeg" || $ext == "jpg") {
header('Content-type: image/jpeg');
$thumb = imagecreatefromjpeg($tempFile);
} elseif ($ext == "png") {
header('Content-type: image/png');
$thumb = imagecreatefrompng($tempFile);
}
$modifiedFile = imagecreatetruecolor($new_width, $new_height);
imagecopyresampled(
$modifiedFile,
$thumb,
0,
0,
0,
0,
$new_width,
$new_height,
$width,
$height
);
if(imagejpeg($tempFile, $target_path))
{
$sql = "INSERT INTO images SET name = '$image_name', domaine = '$domaine'" ;
$return['success'] = $connexion->exec($sql);
echo json_encode($return);
}
header('Location: ../admin_sliders.php');
}
编辑答案-------------------------------------------- ------------------
@keziah 提供了好的方法,但他犯了一点错误,为了使代码正常工作,您需要添加一个 for
条件和一个 count($_FILES['image ']['name']);
和每个 $_FILES['image']['*****'] 末尾的
[$i]
像这样
<?php
// Image config
require_once('../connexion.php');
$max_image_size = 500; //Maximum image size (height and width) (pixels)
$destination_folder = $_SERVER['DOCUMENT_ROOT'].'/AprimeWeb/img/sliders/'.$_POST['domaine'] .'/'; //upload directory ends with /
$jpeg_quality = 90; // jpeg quality (percent)
$domaine = isset($_POST['domaine']) ? $_POST['domaine'] : null;
$TotalImage = count($_FILES['image']['name']); //give the number of image you upload
extract($_POST);
for($i = 0;$i<$TotalImage;$i++){
if (isset($_FILES['image']['name'][$i])) {
// check $_FILES['image'] not empty
if (!isset($_FILES['image']['name'][$i]) || !is_uploaded_file($_FILES['image']['tmp_name'][$i])) {
die('Image file is Missing!');
}
// uploaded file info
$image_name = $_FILES['image']['name'][$i]; //file name
$image_size = $_FILES['image']['size'][$i]; //file size
$image_temp = $_FILES['image']['tmp_name'][$i]; //file temp
$image_size_info = getimagesize($image_temp); //get image size
if ($image_size_info) {
$image_width = $image_size_info[0]; //image width
$image_height = $image_size_info[1]; //image height
$image_type = $image_size_info['mime']; //image type
} else {
die("Make sure image file is valid!");
}
// creates new image from given file
// also, it validates the accepted image format
switch ($image_type) {
case 'image/png':
$image_res = imagecreatefrompng($image_temp);
break;
case 'image/gif':
$image_res = imagecreatefromgif($image_temp);
break;
case 'image/jpeg': case 'image/pjpeg':
$image_res = imagecreatefromjpeg($image_temp);
break;
default:
$image_res = false;
}
if ($image_res) {
var_dump($image_res);
//Get file extension and name to construct new file name
$image_info = pathinfo($image_name);
$image_extension = strtolower($image_info["extension"]); //image extension
$image_name_only = strtolower($image_info["filename"]); //file name only, no extension
//create a random name for new image (Eg: fileName_293749.jpg) ;
$new_file_name = $image_name_only . '_' . rand(0, 99999) . '.' . $image_extension;
//folder path to save resized images and thumbnails
$image_save_folder = $destination_folder . $new_file_name;
// proportionally resize image
if (normal_resize_image($image_res, $image_save_folder, $image_type, $max_image_size, $image_width, $image_height, $jpeg_quality)) {
/* Now, output image to user's browser or store information in the database */
$sql = "INSERT INTO images SET name = '$new_file_name', domaine = '$domaine'" ;
$return['success'] = $connexion->exec($sql);
echo json_encode($return);
}
imagedestroy($image_res); //freeup memory
}
else {
die('Invalid image format.');
}
}
}
最佳答案
normal_resize_image()
参数
imagecreatefrom*($_FILES['image']['tmp_name']);
- *
表示任何图片格式uploads/
- 你的上传目录getimagesize($_FILES['image']['tmp_name'])['mime']
- 图像 mime 类型200、400、500
像素getimagesize($_FILES['image']['tmp_name'])[0]
- 图像宽度getimagesize($_FILES['image']['tmp_name'])[1]
- 图像高度80、90、100
百分比图像缩放器
<?php
function normal_resize_image($source, $destination, $image_type, $max_size, $image_width, $image_height, $quality) {
if ($image_width <= 0 || $image_height <= 0) {
return false;
} //return false if nothing to resize
//do not resize if image is smaller than max size
if ($image_width <= $max_size && $image_height <= $max_size) {
if (save_image($source, $destination, $image_type, $quality)) {
return true;
}
}
//Construct a proportional size of new image
$image_scale = min($max_size / $image_width, $max_size / $image_height);
$new_width = ceil($image_scale * $image_width);
$new_height = ceil($image_scale * $image_height);
$new_canvas = imagecreatetruecolor($new_width, $new_height); //Create a new true color image
//Copy and resize part of an image with resampling
if (imagecopyresampled($new_canvas, $source, 0, 0, 0, 0, $new_width, $new_height, $image_width, $image_height)) {
save_image($new_canvas, $destination, $image_type, $quality); //save resized image
}
return true;
}
?>
save_image()
参数
保存图片到资源文件
<?php
function save_image($source, $destination, $image_type, $quality) {
switch (strtolower($image_type)) {//determine mime type
case 'image/png':
imagepng($source, $destination);
return true; //save png file
break;
case 'image/jpeg':
case 'image/pjpeg':
imagejpeg($source, $destination, $quality);
return true; //save jpeg file
break;
default: return false;
}
}
<?php
// Image config
$max_image_size = 500; //Maximum image size (height and width) (pixels)
$destination_folder = 'uploads/'; //upload directory ends with /
$jpeg_quality = 90; // jpeg quality (percent)
if (isset($_FILES['image'])) {
// check $_FILES['image'] not empty
if (!isset($_FILES['image']) || !is_uploaded_file($_FILES['image']['tmp_name'])) {
die('Image file is Missing!');
}
// uploaded file info
$image_name = $_FILES['image']['name']; //file name
$image_size = $_FILES['image']['size']; //file size
$image_temp = $_FILES['image']['tmp_name']; //file temp
$image_size_info = getimagesize($image_temp); //get image size
if ($image_size_info) {
$image_width = $image_size_info[0]; //image width
$image_height = $image_size_info[1]; //image height
$image_type = $image_size_info['mime']; //image type
} else {
die("Make sure image file is valid!");
}
// creates new image from given file
// also, it validates the accepted image format
switch ($image_type) {
case 'image/png':
$image_res = imagecreatefrompng($image_temp);
break;
case 'image/gif':
$image_res = imagecreatefromgif($image_temp);
break;
case 'image/jpeg': case 'image/pjpeg':
$image_res = imagecreatefromjpeg($image_temp);
break;
default:
$image_res = false;
}
if ($image_res) {
//Get file extension and name to construct new file name
$image_info = pathinfo($image_name);
$image_extension = strtolower($image_info["extension"]); //image extension
$image_name_only = strtolower($image_info["filename"]); //file name only, no extension
//create a random name for new image (Eg: fileName_293749.jpg) ;
$new_file_name = $image_name_only . '_' . rand(0, 99999) . '.' . $image_extension;
//folder path to save resized images and thumbnails
$image_save_folder = $destination_folder . $new_file_name;
// proportionally resize image
if (normal_resize_image($image_res, $image_save_folder, $image_type, $max_image_size, $image_width, $image_height, $jpeg_quality)) {
/* Now, output image to user's browser or store information in the database */
echo '<div align="center">';
echo '<img src="uploads/' . $new_file_name . '" alt="Resized Image">';
echo '</div>';
// COde to store the image into database
}
imagedestroy($image_res); //freeup memory
}
else {
die('Invalid image format.');
}
}
关于php - 在使用临时文件夹上传之前调整多个图像大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37527358/
我在使用NetBeans 6.8时遇到以下问题。我通过项目属性->库->编译选项卡->添加JAR /文件夹添加带有jar的文件夹。在下一个窗口中,我选择文件夹,然后选择“复制到库文件夹”。但是,我仍然
我的网站有一个域别名。我想知道如何将 domainA.ext 的请求重定向到 https://domainA.ext/folderA和对 domainB.ext 的请求到 http://domainB
我应该在 Eclipse 中构建的 Android 项目中创建自己的自定义菜单文件夹吗?例如,我想创建一种出现在所有 Activity 中的标题。我知道菜单应该在 res/menu 文件夹中的 XML
我正在使用 VS2008 和 .net 3.5。我在我的解决方案中创建了一个类库(Myproject.Controllers)。在这个类下,我添加了一个 Controllers 文件夹。在文件夹中我添
我有一个包含生成后步骤的 Visual Studio 2012 扩展项目,我想在其中将 .dll 和 .AddIn 文件复制到当前用户的 Visual Studio 2012 AddIns 文件夹中。
我在专有的 linux 发行版中有一些自动下载。 他们去临时暂存盘。我想在它们完成后将它们 move 到主 RAID 阵列。我能看到的最好方法是检查磁盘上的文件夹,看看内容是否在最后一分钟发生了变化。
我目前正在使用 SVN 对我的软件项目进行版本控制。在一个正在进行的项目中,我有主干,用于客户的共同功能和规范以及分支,用于客户特定的。 有没有办法在每次执行此类操作时标记一些不应合并到分支中的文
这个问题在这里已经有了答案: How to exclude a directory in find . command (45 个回答) 8 年前关闭。 如何删除文件夹中的所有内容并排除特定文件夹和文
如何在特定目录中创建具有当前日期和时间的文件夹或文件? DateTimeFormatter f = DateTimeFormatter.ofPattern("uuuuMMdd HHmmss") ; L
有没有办法在系统文件资源管理器的左侧“文件夹”栏中打开文件或文件夹?如果没有这个,我必须打开文件资源管理器并一直导航到该文件夹所在的位置才能操作文件,这确实很不方便。对于大多数带有这样导航栏的工具
预期:我使用 go get 安装包,它在 src 文件夹中创建了所有必要的文件夹,但它们只出现在 pkg/mod 文件夹中,我不能使用它们。 现实:它说它正在下载,完成,然后什么都没有。 一切都在 W
说 foo.zip包含: a b c |- c1.exe |- c2.dll |- c3.dll 哪里a, b, c是文件夹。 如果我 Expand-Archive .\foo.zip -Destin
不久前我正在删除 var 文件夹中 Magento 的缓存。我可能是错的,但我认为我犯了一个错误,而不是删除 var/cache 中的所有内容,而是意外删除了 var 中的所有内容。 Magento
我在 svn 存储库的单独文件夹中有一些代码项目。 现在我在删除文件时遇到一些问题:大多数时候一切顺利,但有时当我从磁盘删除文件或文件夹时, checkin 过程会出现各种错误。 所以我想知道:在sv
有没有什么方法可以用很少的R命令行自动删除所有文件或文件夹?我知道 unlink() 或 file.remove() 函数,但对于这些函数,您需要定义一个字符向量,其中包含您想要的文件的所有名称删除。
用于在文件夹中查找不符合Get-Childitem的LastWriteTime过滤器日期范围标准的文件的powershell命令是什么? 因此,请检查目录中是否包含不包含在01/10/2012(十月1
我正在为我工作的公司内部使用的应用程序之一编写 NSIS 安装程序,安装过程工作正常,所有 REG 键都已创建,文件夹和服务也没有问题,该应用程序使用。出于某种我无法理解的原因,卸载过程不起作用。
我有一个 Excel 文件,并且在同一文件夹中还有一个包含我想要包含的 CSV 文件的文件夹。使用“来自文件夹”查询,第一步将给出以下查询: = Folder.Files("D:\OneDrive\D
我在docker中玩ScyllaDB。为了使ScyllaDB在docker生产设置中最有效地运行,它需要一个XFS格式的磁盘。 您知道如何在Linux和MacO中创建XFS容器卷,磁盘文件吗? 谢谢
我应该编写一个函数,其中包含之前每次与该数字相乘的乘积 基本上是这样的: > productFromLeftToRight [2,3,4,5] [120,60,20,5] 我应该使用高阶函数,例如折叠
我是一名优秀的程序员,十分优秀!