0

我需要知道哪个更好 gd 或 imagemagick 来调整图像大小

4

4 回答 4

4

我更喜欢ImageMagick。但我知道GD也很好。

这是一个关于如何使用 PHP 调整图像大小的示例:

   <?php
      if(!extension_loaded('imagick')) {
         dl('imagick.so');
      }
      $img = strip_tags($_GET['imagename']);
      if(isset($_GET['size'])) {
         $size = strip_tags($_GET['size']);
      } else {
         $size = 0;
      } 
      if(isset($_GET['vsize'])) {
         $vsize = strip_tags($_GET['vsize']);
      } else {
         $vsize = 0;
      }
      $image = new Imagick($img);
      $image->thumbnailImage($size, $vsize);
      header("Content-type: image/png");
      print $image;
   ?>

是我从中获取示例的链接。只需将其复制到问题中即可。所有的功劳归作者所有。

于 2009-08-16T12:15:36.387 回答
2

“更好”是一个主观术语。许多调整大小的算法可以以更高的处理时间为代价提供更好的质量。所以决定你想要什么属性(质量好,或者响应时间快),然后查看每个库的结果。

于 2009-08-16T12:18:30.880 回答
1

下面是我用 PHP 编写的缩略图。我已经删除了添加阴影和边框的位(不要认为我已经破坏了它,但还没有测试过)。这使用了 PHP 中的 GD 库,我一直对结果感到满意。

注意:您可能可以删除更多内容 - 例如,它设置缩略图的 BG 颜色,使其与页面背景匹配,等等......

在这种情况下,它会被这样调用:

thumbnail.php?size=400&image=SomeImage.jpg

唯一的小问题是大文件(即现代数码相机的高质量)可能会出现内存问题。不过,我很少遇到这个问题——通常任何大小的东西都不能由用户上传,因为网络服务器不允许这样做。

<?php

$defaultsize = 400;
$defaultimage = "images/error.jpg";

ini_set("memory_limit", "32M");

$red    =   isset($_REQUEST['r']) ? $_REQUEST['r'] : 255;
$green  =   isset($_REQUEST['g']) ? $_REQUEST['g'] : 255;
$blue   =   isset($_REQUEST['b']) ? $_REQUEST['b'] : 255;

if(!isset($_REQUEST['size'])) {
    $maxWidth=$defaultsize;
    $maxHeight=$defaultsize;
} else {
    $maxWidth=$_REQUEST['size'];
    $maxHeight=$_REQUEST['size'];
}

if(!isset($_REQUEST['image'])) {
    $picurl = $defaultimage;
} else {
    $picurl = "../" . stripslashes($_REQUEST['image']);
}

//Find out about source file
$srcDetails = @getimagesize($picurl);
if($srcDetails) {
    $srcWidth=$srcDetails[0];
    $srcHeight=$srcDetails[1];
} else {
    $srcWidth=$maxWidth;
    $srcHeight=$maxHeight;
}


if($srcWidth/$srcHeight < $maxWidth/$maxHeight) {
//Too wide
    $width = $maxHeight / $srcHeight * $srcWidth;
    $height = $maxHeight / $srcHeight * $srcHeight;
} else {
//Too tall
    $width = $maxWidth / $srcWidth * $srcWidth;
    $height = $maxWidth / $srcWidth * $srcHeight;
}

switch ($srcDetails[2]) {
case 1: //GIF
    $srcImage = ImagecreateFromGIF($picurl);
    break;

case 2: //JPEG
    $srcImage = ImagecreateFromJPEG($picurl);
    break;

case 3: //PNG
    $srcImage = ImagecreateFromPNG($picurl);
    break;

case 6: //WBMP
    $srcImage = ImagecreateFromWBMP($picurl);
    break;

default:
    //Possibly add some "Unknown File Type" error code here. However, if we do't return an image, we will error nicely later anyway
    break;
}

if(@!$srcImage) {
    // The nice error for no source image (include error mail to yourself here if you want...)

    $srcImage  = imagecreate($maxWidth, $maxHeight); /* Create a blank image */
    $bgc = imagecolorallocate($srcImage, 255, 255, 255);
    $tc  = imagecolorallocate($srcImage, 0, 0, 0);
    imagefilledrectangle($srcImage, 0, 0, 150, 30, $bgc);
    /* Output an errmsg */
    imagestring($srcImage, 4, 5, 5, "Error resizing image", $tc);
    imagestring($srcImage, 4, 5, 20, "Tech support department", $tc);
    imagestring($srcImage, 4, 5, 35, "has been informed", $tc);
}



//Create thumbnail
$thumb = imagecreatetruecolor ($width, $height);
$bg = ImageColorAllocate($thumb, $red, $green, $blue);
imagefill ($thumb, 0, 0, $bg);

//Add the image itself
Imagecopyresized ($thumb, $srcImage, 0, 0, 0, 0, $width, $height, $srcWidth, $srcHeight);

//Add a black border
imageline($thumb, 0, 0, 0, $height, $black);
imageline($thumb, 0, 0, $width, 0, $black);
imageline($thumb, 0, $height, $width, $height, $black);
imageline($thumb, $width, $height, $width, 0, $black);

//output header
//I leave this so late so if there ARE any errors, they are displayed as text not a broken image
//(this will happen when looking at the thumnailer directly but will display as a broken image in a webpage still)
header("Content-type: image/PNG");

imagePNG($thumb);

//Clear up memory
imagedestroy($srcImage);

?>
于 2009-08-16T13:22:45.300 回答
1

只有有限数量的重采样算法可用于调整图像大小。询问哪个程序更好意味着如果该程序实现了更好的算法,那么该程序被认为是“好”的。

于 2009-08-16T14:02:41.540 回答