用于将图像调整为特定宽度和高度的脚本

时间:2014-11-29 05:17:45

标签: php

您好我有一个表单,它通过PHP中的函数将六个图像上传到生成的文件夹

在这里旁边上传我想让我的图像640 * 480的宽度和高度。

你能为我写一下将图像大小调整到上述大小的脚本。

这是我的代码:

    foreach ($_FILES as $file) 
    {

mkdir("PropertyImages/$ImageID");   
for($x = 0; $x < count($files['name']); $x++)
{
  $name=$files['name'][$x];
  $tmp_name=$files['tmp_name'][$x];
     if(move_uploaded_file($tmp_name, "PropertyImages/$ImageID/".$name))
     {

         $imagequery="INSERT INTO propertyimages(ImageID, ImageName, ImagePath) VALUES('$ImageID', '$name', 'PropertyImages/$ImageID/$name')";
         $imagequeryrun=$connection->query($imagequery);
         if( $connection->error ) exit( $connection->error );
         echo 'Image <b>'. $name .'</b> Uploaded Successfully <br>';
          echo '<META HTTP-EQUIV="Refresh" Content="5; URL=Property_Insert_Page.php">';

     }

}
        }

1 个答案:

答案 0 :(得分:0)