📜  PHP | Gmagick thumbnailimage()函数

📅  最后修改于: 2022-05-13 01:56:43.941000             🧑  作者: Mango

PHP | Gmagick thumbnailimage()函数

Gmagick::thumbnailImage()函数是PHP中的一个内置函数,用于将图像的大小更改为给定尺寸并删除任何关联的配置文件。此函数用于生成适合在 Web 上显示的小型、低成本的缩略图图像。如果 $fit 参数设置为 True 则行和列参数使用最大边。双方都将被缩放,直到匹配或小于给定的参数。

句法:

public Gmagick::thumbnailimage( $width, $height, $fit = FALSE ] )

参数:此函数接受三个参数,如上所述,如下所述:

  • $width:此参数用于设置图像宽度。
  • $height:此参数用于设置图像高度。
  • $fit:该参数描述是否取布尔值。

返回值:此函数在成功时返回 Gmagick 对象。
错误/异常:此函数在错误时抛出 GmagickException。

下面的程序说明了PHP中的Gmagick::thumbnailimage()函数:

方案一:
输入图像:

PHP
thumbnailImage(320, 425, TRUE);
 
header('Content-type: image/png');
   
// Output the image
echo $gmagick;
?>


PHP
setStrokeOpacity(1);
$draw->setStrokeColor('Red');
$draw->setFillColor('Green');
   
// Set the width and height of image
$draw->setStrokeWidth(7);
$draw->setFontSize(72);
    
// Function to draw circle 
$draw->circle(250, 250, 100, 150);
  
$gmagick = new Gmagick();
$gmagick->newImage(500, 500, 'White');
$gmagick->setImageFormat("png");
$gmagick->drawImage($draw);
 
// Thumbnail of the image.
$gmagick->thumbnailImage(150, 250, TRUE);
  
// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>


输出:

方案二:

PHP

setStrokeOpacity(1);
$draw->setStrokeColor('Red');
$draw->setFillColor('Green');
   
// Set the width and height of image
$draw->setStrokeWidth(7);
$draw->setFontSize(72);
    
// Function to draw circle 
$draw->circle(250, 250, 100, 150);
  
$gmagick = new Gmagick();
$gmagick->newImage(500, 500, 'White');
$gmagick->setImageFormat("png");
$gmagick->drawImage($draw);
 
// Thumbnail of the image.
$gmagick->thumbnailImage(150, 250, TRUE);
  
// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>

输出:

参考: http: PHP。 PHP