當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP Gmagick thumbnailimage()用法及代碼示例


Gmagick::thumbnailImage()函數是PHP中的內置函數,用於將圖像大小更改為給定尺寸並刪除任何關聯的配置文件。此函數用於產生較小的low-cost縮略圖圖像,適合在Web上顯示。如果$fit參數設置為True,則行和列參數使用最大邊。雙方都將按比例縮放,直到匹配或小於雙方指定的參數為止。

用法:

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


參數:此函數接受上述和以下所述的三個參數:


  • $width:此參數用於設置圖像寬度。
  • $height:此參數用於設置圖像高度。
  • $fit:此參數描述是否采用布爾值。

返回值:成功時,此函數返回Gmagick對象。

錯誤/異常:此函數在出錯時引發GmagickException。

以下示例程序旨在說明PHP中的Gmagick::thumbnailimage()函數:

程序1:
輸入圖片:

<?php  
    
// Create a Gmagick object  
$gmagick = new Gmagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/tech.png');  
    
// Thumbnail of the image.  
$gmagick->thumbnailImage(320, 425, TRUE);  
  
header('Content-type: image/png');  
    
// Ouput the image  
echo $gmagick;  
?> 

輸出:

程序2:

<?php  
     
// Create a GmagickDraw object  
$draw = new GmagickDraw();  
    
// Create GmagickPixel object  
$strokeColor = new GmagickPixel('Red');  
$fillColor = new GmagickPixel('Green');  
    
// Set the color, opacity of image  
$draw->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.net/manual/en/gmagick.thumbnailimage.php



相關用法


注:本文由純淨天空篩選整理自sarthak_ishu11大神的英文原創作品 PHP | Gmagick thumbnailimage() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。