macpeace
09-13-2009, 03:42 PM
Hi all!
Iam trying to change this code to recieve 5 input files in order to upload and resize. I now that I must make a LOOP for it, trying and tryinh without sucess!
Anyone can help..actualy it only receive one input..."image".
The code:
<?php
if(isset($_POST['Submit']))
{
$size = 80;
$filedir = 'images/';
$thumbdir = 'images/';
$prefix = 'small_';
$maxfile = '200000';
$mode = '0666';
$userfile_name = $_FILES['image']['name'];
$userfile_tmp = $_FILES['image']['tmp_name'];
$userfile_size = $_FILES['image']['size'];
$userfile_type = $_FILES['image']['type'];
if (isset($_FILES['image']['name']))
{
$prod_img = $filedir.$userfile_name;
$prod_img_thumb = $thumbdir.$prefix.$userfile_name;
move_uploaded_file($userfile_tmp, $prod_img);
chmod ($prod_img, octdec($mode));
$sizes = getimagesize($prod_img);
$aspect_ratio = $sizes[0]/$sizes[1];
if ($sizes[0] <= $size)
{
$new_width = $sizes[0];
$new_height = $sizes[1];
}else{
$new_width = $size;
$new_height = abs($new_width/$aspect_ratio);
}
$destimg = ImageCreateTrueColor($new_width,$new_height) or die('Problem In Creating image');
$srcimg = ImageCreateFromJPEG($prod_img) or die('Problem In opening Source Image');
ImageCopyResized($destimg,$srcimg,0,0,0,0,$new_width,$new_height,ImageSX($srcimg),ImageSY($srcimg)) or die('Problem In resizing');
ImageJPEG($destimg,$prod_img_thumb,90) or die('Problem In saving');
imagedestroy($destimg);
}
print_r($sizes);
echo"width new: $new_width<br>height new: $new_height";
echo '
<br><a href="'.$prod_img.'">
<img src="'.$prod_img_thumb.'" width="'.$new_width.'" heigt="'.$new_height.'">
</a>';
}
else
{
echo '
<form method="POST" action="'.$_SERVER['PHP_SELF'].'" enctype="multipart/form-data">
<input type="file" name="image1"><p>
<input type="file" name="image2"><p>
<input type="file" name="image3"><p>
<input type="file" name="image4"><p>
<input type="file" name="image5"><p>
<input type="Submit" name="Submit" value="Submit">
</form>';
}
?>
Iam trying to change this code to recieve 5 input files in order to upload and resize. I now that I must make a LOOP for it, trying and tryinh without sucess!
Anyone can help..actualy it only receive one input..."image".
The code:
<?php
if(isset($_POST['Submit']))
{
$size = 80;
$filedir = 'images/';
$thumbdir = 'images/';
$prefix = 'small_';
$maxfile = '200000';
$mode = '0666';
$userfile_name = $_FILES['image']['name'];
$userfile_tmp = $_FILES['image']['tmp_name'];
$userfile_size = $_FILES['image']['size'];
$userfile_type = $_FILES['image']['type'];
if (isset($_FILES['image']['name']))
{
$prod_img = $filedir.$userfile_name;
$prod_img_thumb = $thumbdir.$prefix.$userfile_name;
move_uploaded_file($userfile_tmp, $prod_img);
chmod ($prod_img, octdec($mode));
$sizes = getimagesize($prod_img);
$aspect_ratio = $sizes[0]/$sizes[1];
if ($sizes[0] <= $size)
{
$new_width = $sizes[0];
$new_height = $sizes[1];
}else{
$new_width = $size;
$new_height = abs($new_width/$aspect_ratio);
}
$destimg = ImageCreateTrueColor($new_width,$new_height) or die('Problem In Creating image');
$srcimg = ImageCreateFromJPEG($prod_img) or die('Problem In opening Source Image');
ImageCopyResized($destimg,$srcimg,0,0,0,0,$new_width,$new_height,ImageSX($srcimg),ImageSY($srcimg)) or die('Problem In resizing');
ImageJPEG($destimg,$prod_img_thumb,90) or die('Problem In saving');
imagedestroy($destimg);
}
print_r($sizes);
echo"width new: $new_width<br>height new: $new_height";
echo '
<br><a href="'.$prod_img.'">
<img src="'.$prod_img_thumb.'" width="'.$new_width.'" heigt="'.$new_height.'">
</a>';
}
else
{
echo '
<form method="POST" action="'.$_SERVER['PHP_SELF'].'" enctype="multipart/form-data">
<input type="file" name="image1"><p>
<input type="file" name="image2"><p>
<input type="file" name="image3"><p>
<input type="file" name="image4"><p>
<input type="file" name="image5"><p>
<input type="Submit" name="Submit" value="Submit">
</form>';
}
?>