8

我需要将图片大小调整为固定大小。但它必须保持宽度和高度之间的因素。

假设我想将图片大小238 (w) X 182 (h)210 / 150

我现在要做的是:

Original width / target width = 1.333333
Original Height / target Height = 1.213333

现在我取最小的因素。

现在我总是有正确的宽度,因为238 / 1.333333 = 210。但身高还在160

如何在160不破坏图片的情况下降低高度?

我需要种植吗?如果有怎么办?

4

11 回答 11

26

这个解决方案与 Can Berk Güder 的解决方案基本相同,但是在花了一些时间编写和评论之后,我想发帖。

此函数创建一个与您提供的大小完全相同的缩略图。调整图像大小以最适合缩略图的大小。如果它不完全适合两个方向,则它在缩略图中居中。广泛的评论解释了事情的经过。

function thumbnail_box($img, $box_w, $box_h) {
    //create the image, of the required size
    $new = imagecreatetruecolor($box_w, $box_h);
    if($new === false) {
        //creation failed -- probably not enough memory
        return null;
    }


    //Fill the image with a light grey color
    //(this will be visible in the padding around the image,
    //if the aspect ratios of the image and the thumbnail do not match)
    //Replace this with any color you want, or comment it out for black.
    //I used grey for testing =)
    $fill = imagecolorallocate($new, 200, 200, 205);
    imagefill($new, 0, 0, $fill);

    //compute resize ratio
    $hratio = $box_h / imagesy($img);
    $wratio = $box_w / imagesx($img);
    $ratio = min($hratio, $wratio);

    //if the source is smaller than the thumbnail size, 
    //don't resize -- add a margin instead
    //(that is, dont magnify images)
    if($ratio > 1.0)
        $ratio = 1.0;

    //compute sizes
    $sy = floor(imagesy($img) * $ratio);
    $sx = floor(imagesx($img) * $ratio);

    //compute margins
    //Using these margins centers the image in the thumbnail.
    //If you always want the image to the top left, 
    //set both of these to 0
    $m_y = floor(($box_h - $sy) / 2);
    $m_x = floor(($box_w - $sx) / 2);

    //Copy the image data, and resample
    //
    //If you want a fast and ugly thumbnail,
    //replace imagecopyresampled with imagecopyresized
    if(!imagecopyresampled($new, $img,
        $m_x, $m_y, //dest x, y (margins)
        0, 0, //src x, y (0,0 means top left)
        $sx, $sy,//dest w, h (resample to this size (computed above)
        imagesx($img), imagesy($img)) //src w, h (the full size of the original)
    ) {
        //copy failed
        imagedestroy($new);
        return null;
    }
    //copy successful
    return $new;
}

示例用法:

$i = imagecreatefromjpeg("img.jpg");
$thumb = thumbnail_box($i, 210, 150);
imagedestroy($i);

if(is_null($thumb)) {
    /* image creation or copying failed */
    header('HTTP/1.1 500 Internal Server Error');
    exit();
}
header('Content-Type: image/jpeg');
imagejpeg($thumb);
于 2009-04-14T12:21:19.037 回答
11

这不会裁剪图片,但会在必要时在新图像周围留出空间,我认为在创建缩略图时这是一种更好的方法(比裁剪)。

$w = 210;
$h = 150;

$orig_w = imagesx($original);
$orig_h = imagesy($original);

$w_ratio = $orig_w / $w;
$h_ratio = $orig_h / $h;

$ratio = $w_ratio > $h_ratio ? $w_ratio : $h_ratio;

$dst_w = $orig_w / $ratio;
$dst_h = $orig_h / $ratio;
$dst_x = ($w - $dst_w) / 2;
$dst_y = ($h - $dst_h) / 2;

$thumbnail = imagecreatetruecolor($w, $h);

imagecopyresampled($thumbnail, $original, $dst_x, $dst_y,
                   0, 0, $dst_w, $dst_h, $orig_w, $orig_h);
于 2009-04-14T11:35:01.800 回答
2

你有想象吗?如果是这样,您可以使用它加载图像并执行类似的操作thumbnailimage()

在那里你可以跳过任何一个参数(高度或宽度),它会正确调整大小。

于 2009-04-14T11:22:54.293 回答
2

也许看看PHPThumb(它适用于 GD 和 ImageMagick)

于 2009-04-14T11:27:38.493 回答
2

从大图像快速生成高质量缩略图的提示:(来自 php.net 站点

如果您分两个阶段生成缩略图:

  1. 使用快速调整大小从原始图像到最终尺寸两倍的中间图像
  2. 使用高质量重采样从中间图像到最终缩略图

那么这可以更快;步骤 1 中的调整大小质量相对较差,但具有足够的额外分辨率,因此在步骤 2 中质量不错,中间图像足够小,可以进行高质量的重新采样(在 2:1 调整大小时效果很好)进展非常快。

于 2009-04-14T14:20:54.227 回答
1

我宁愿调整大小以使图像包含在您的限制范围内,然后填写空白部分。因此,在上面的示例中,您将调整大小以使高度正常,然后用背景颜色向左右填充(我认为每端 7 个像素)。

于 2009-04-14T11:36:35.260 回答
1

从 PHP 来源的网页中调整图像大小可能会出现问题。较大的图像(磁盘上接近 2+MB)可能非常大,以至于它们需要超过 32MB 的内存来处理。

出于这个原因,我倾向于从基于 CLI 的脚本(最多可使用 128MB 内存)或标准命令行(也可以根据需要使用)来执行此操作。

# where to put the original file/image. It gets resized back 
# it was originally found (current directory)
SAFE=/home/website/PHOTOS/originals
# no more than 640x640 when finished, and always proportional
MAXSIZE=640
# the larger image is in /home/website/PHOTOS/, moved to .../originals
# and the resized image back to the parent dir.
cd $SAFE/.. && mv "$1" "$SAFE/$1" && \
   convert "$SAFE/$1" -resize $MAXSIZE\x$MAXSIZE\> "$1"

'convert' 是 ImageMagick 命令行工具的一部分。

于 2009-04-14T11:38:03.243 回答
1

这些是缩略图吗?如果是的话,种植就不是什么大问题了。我们一直这样做。我什至不回避将任意比例裁剪成残缺的二次缩略图,完全弄乱图像(是的,我就是那个铁杆),如果它看起来不错的话。这是设计师对技术问题的回答,但仍然如此。不要害怕庄稼!

于 2009-04-14T11:56:31.110 回答
1

我觉得有点混乱。。如果只想调整大小,保持原来的比例,正确的操作是:

$ratio = $originalWidth / $originalHeight;
if(//you start from the width, and want to find the height){
 $newWidth = $x;
 $newHeight = $x / $ratio;
}else if(//you start from the height, and want to find the width){
 $newHeight = $x;
 $newWidth = $x * $ratio;
}

否则,如果前缀 newWidth 和 newHeight 无法更改,并且拇指比例与原始比例不同,则唯一的方法是对拇指进行裁剪或添加边框。

如果你要采取削减的方式,这个功能可以帮助你(我几年前在 5 分钟内写过,可能需要一些改进.. 它只适用于 jpg,例如;):

    function thumb_cut($nomeimage, $source_path, $destination_path, $new_width, $new_height){
      list($width, $height, $type, $attr) = getimagesize($source_path.$nomeimage);
      if($type == 2){
        if($width > $new_width){
          $new_width = $width;
          $new_height = $height;
        }
        $compression = 100;
        $destimg = imagecreatetruecolor($new_width,$new_height) or die("Problems creating the image");
        $srcimg = ImageCreateFromJPEG($source_path.$nomeimage) or die("problem opening the image");
        $w = ImageSX($srcimg);
        $h = ImageSY($srcimg);
        $ro = $new_width/$new_height;
        $ri = $w/$h;
        if($ro<$ri){
          $par = "h";
        }else{
          $par = "w";
        }
        if($par == "h"){
          $ih = $h;
          $conv = $new_width/$new_height;
          $iw = $conv*$ih;
          $cw = ($w/2)-($iw/2);
          $ch = ($h/2)-($ih/2);
        }else if($par == "w"){
          $iw = $w;
          $conv = $new_height/$new_width;
          $ih = $conv*$iw;
          $cw = ($w/2)-($iw/2);
          $ch = ($h/2)-($ih/2);
        }
        ImageCopyResampled($destimg,$srcimg,0,0,$cw,$ch,$new_width,$new_height,$iw,$ih) or die("problems with resize");
        ImageJPEG($destimg,$destination_path.$nomeimage,$compression) or die("problems with storing new image");
      }
    }
于 2009-04-14T12:17:55.910 回答
1

该技术是:

  1. 调整图像大小,使一个尺寸匹配,而另一个尺寸超过所需尺寸
  2. 从调整大小的图像中心取出所需大小的图像。

最后,如果您对如何进行调整大小数学感到困惑,请记住,如果源图像和目标图像的比例相同,则此关系成立:

SourceWidth / SourceHeight = DestinationWidth / DestinationHeight

如果你知道三个参数,你可以很容易地计算出第四个参数。

我写了一篇关于这个的文章:
Crop-To-Fit an Image Using ASP/PHP

于 2009-04-18T04:18:35.323 回答
0

您必须从顶部和底部裁剪 5 px 才能达到您的目标尺寸,但这可能会破坏图片。

真的你应该有一个目标宽度或高度,然后以相同的比例调整其他尺寸。

于 2009-04-14T11:30:56.350 回答