0

我没有太多时间写,所以会告诉你我的问题,我有一个裁剪图像的 php 代码,好处是当我将 $thumb_width 和 $thumb_height 设置为相同的值时,它可以很好地裁剪图像,但是在这种情况下,我不想要具有此分辨率(200 * 150)的图像,这是代码,我找不到错误。

<?php
function create_thumb($directory, $image, $destination) {
$image_file = $image;
$image = $directory.$image;

if (file_exists($image)) {

$source_size = getimagesize($image);

if ($source_size !== false) {

  $thumb_width = 200;
  $thumb_height = 150;

  switch($source_size['mime']) {
    case 'image/jpeg':
         $source = imagecreatefromjpeg($image);
    break;
    case 'image/png':
         $source = imagecreatefrompng($image);
    break;
    case 'image/gif':
         $source = imagecreatefromgif($image);
    break;
  }

  $source_aspect = round(($source_size[0] / $source_size[1]), 1);
  $thumb_aspect = round(($thumb_width / $thumb_height), 1);

  if ($source_aspect < $thumb_aspect) {
    $new_size = array($thumb_width, ($thumb_width / $source_size[0]) * $source_size[1]);
    $source_pos = array(0, ($new_size[1] - $thumb_height) / 2);
  } else if ($source_aspect > $thumb_aspect) {
    $new_size = array(($thumb_width / $source_size[1]) * $source_size[0], $thumb_height);
    $source_pos = array(($new_size[0] - $thumb_width) / 2, 0);
  } else {
    $new_size = array($thumb_width, $thumb_height);
    $source_pos = array(0, 0);
  }

  if ($new_size[0] < 1) $new_size[0] = 1;
  if ($new_size[1] < 1) $new_size[1] = 1;

  $thumb = imagecreatetruecolor($thumb_width, $thumb_height);
  imagecopyresampled($thumb, $source, 0, 0, $source_pos[0], $source_pos[1], $new_size[0],                                                                $new_size[1], $source_size[0], $source_size[1]);

  switch($source_size['mime']) {
    case 'image/jpeg':
         imagejpeg($thumb, $destination.$image_file);
    break;
    case 'image/png':
          imagepng($thumb, $destination.$image_file);
    break;
    case 'image/gif':
         imagegif($thumb, $destination.$image_file);
    break;
}


}

}
}
?>

在这个例子中,如果我放一张 (533px*300px) 的图像,它会变形,包装“对不起我的英语 =)”,请我需要帮助。如果您找到解决方案,我将非常高兴。

谢谢你,马蒂亚斯。

4

2 回答 2

1

这个 id 莳萝。

在第 46 行,您提供了更多空格,因此您需要删除该行中不需要的空格。

于 2012-10-18T06:42:30.077 回答
0

是的。即使我们给了多个空格,通常也只有一个空格。但是这里存在多个“ ”之类的空格。

语法错误:imagecopyresampled($thumb, $source, 0, 0, $source_pos[0], $source_pos[1], $new_size[0], $new_size[1], $source_size[0], $source_size[1] );

正确语法:imagecopyresampled($thumb, $source, 0, 0, $source_pos[0], $source_pos[1], $new_size[0],$new_size[1], $source_size[0], $source_size[1] );

于 2012-11-01T09:15:02.313 回答