簡體   English   中英

調整圖像大小並使用imagejpeg()保存

[英]Resize an image and save with imagejpeg()

我試圖用PHP將圖像大小調整為縮略圖! 我沒有錯誤,但它不會將縮略圖保存在我的服務器上。 代碼是:

#Resize image
function resize($input_dir, $cur_file, $newwidth, $output_dir)
{
    $filename = $input_dir.'/'.$cur_file;
    $format='';
    if(preg_match("/.jpg/i", $filename))
    {
        $format = 'image/jpeg';
    }
    if (preg_match("/.gif/i", $filename))
    {
        $format = 'image/gif';
    }
    if(preg_match("/.png/i", $filename))
    {
        $format = 'image/png';
    }
    if($format!='')
    {
        list($width, $height) = getimagesize($filename);
        $newheight=$height*$newwidth/$width;
        switch($format)
        {
            case 'image/jpeg':
            $source = imagecreatefromjpeg($filename);
            break;
            case 'image/gif';
            $source = imagecreatefromgif($filename);
            break;
            case 'image/png':
            $source = imagecreatefrompng($filename);
            break;
        }
        $thumb = imagecreatetruecolor($newwidth,$newheight);
        imagealphablending($thumb, false);
        imagecopyresized($thumb, $source, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
        imagejpeg($thumb, 'thumb_'.$cur_file);
    }
}

我的功能如下:

resize(plugins_url().'/MyImagePlugin/img', 'testimg.jpg', "200");

圖像位於我的插件Dic中的文件夾“img”中。 有線的事情是,我沒有得到任何錯誤?! 對於img-folder,CHMOD是777。

任何幫助,將不勝感激。

在行中保存圖像時,您沒有使用任何路徑:

imagejpeg($thumb, 'thumb_'.$cur_file);

$cur_file設置為testing.jpg。

您應該添加文件名的路徑,否則它將在當前目錄中創建它。

變化類似於:

function resize($input_dir, $cur_file, $newwidth, $output_dir = "" )
{
   if($output_dir == "") $output_dir = $input_dir;

   .....

      imagejpeg($thumb, $output_dir.'/thumb_'.$cur_file);
    }
}

我知道這不是你的做法,但我相信它可以幫到你。

if (isset($_FILES['image']['name']))
 {
  $saveto = "dirname/file.jpg";
  move_uploaded_file($_FILES['image']['tmp_name'], $saveto);
  $typeok = TRUE;
  switch($_FILES['image']['type'])
  {
  case "image/gif": $src = imagecreatefromgif($saveto); break;
  case "image/jpeg": // Both regular and progressive jpegs
  case "image/pjpeg": $src = imagecreatefromjpeg($saveto); break;
  case "image/png": $src = imagecreatefrompng($saveto); break;
  default: $typeok = FALSE; break;
  }
  if ($typeok)
  {
  list($w, $h) = getimagesize($saveto);
  $max = 500; 
  \\ you can change this to desired product for height and width.
  $tw = $w;
  $th = $h;
  if ($w > $h && $max < $w)
  {      
  $th = $max / $w * $h;
  $tw = $max;
  }
  elseif ($h > $w && $max < $h)      
  {
  $tw = $max / $h * $w;
  $th = $max;
  }
  elseif ($max < $w)
  {
  $tw = $th = $max;
  }
  $tmp = imagecreatetruecolor($tw, $th);      
  imagecopyresampled($tmp, $src, 0, 0, 0, 0, $tw, $th, $w, $h);
  imageconvolution($tmp, array( // Sharpen image
  array(-1, -1, -1),
  array(-1, 16, -1),
  array(-1, -1, -1)
  ), 8, 0);
  imagejpeg($tmp, $saveto);
  imagedestroy($tmp);
  imagedestroy($src);
  }
  }

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM