我想从文件夹中获取图像并将图像上传到另一个没有任何输入类型文件的文件夹中?

时间:2013-03-01 13:40:54

标签: php mysql

我想从文件夹中获取图像并将图像上传到另一个没有任何输入类型文件的文件夹中?但我现在从管理员/上传中获取图像

此处是我的网页代码

<?php
$size = 200; // the thumbnail height
     $filedir = 'uploads/'; // the directory for the original image
     $thumbdir = 'uploads/'; // the directory for the thumbnail image
     $prefix = 'small0_'; // the prefix to be added to the original name
     $maxfile = '2000000';
     $mode = '0666';
     $rnd_1 = rand(11111,99999); 

     $userfile_name= $rnd_1.'_'.$_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[1]/$sizes[0]; 
         if ($sizes[1] <= $size)
         {

             $new_width = '500';
             $new_height = '500';
         }else{

             $new_width = '500';
             $new_height = '500';
         }
             $destimg=ImageCreateTrueColor($new_width,$new_height)
             or die('Problem In Creating image');

           $srcimg=ImageCreateFromJPEG($prod_img)
         or $srcimg=ImageCreateFromPNG($prod_img)
         or $srcimg=ImageCreateFromGIF($prod_img)
             or die('Problem In opening Source Image0');
         if(function_exists('imagecopyresampled'))
         {
             imagecopyresampled($destimg,$srcimg,0,0,0,0,$new_width,$new_height,ImageSX($srcimg),ImageSY($srcimg))
             or die('Problem In resizing');
         }else{
             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');
     }
?>

 <img name="image" id="image" src="admin/uploads/small0_<?php echo $image?>"   width="150" height="150">

我从管理员/上传获取图片我想将电影购物车产品图片放入另一个没有输入类型文件的文件夹

1 个答案:

答案 0 :(得分:0)

如果它已经在服务器上,rename应该可以解决问题。