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


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


Gmagick::setsize()函數是PHP中的內置函數,用於設置與gmagick對象關聯的大小。

用法:

Gmagick Gmagick::setsize( int $columns, int $rows )

參數:該函數接受上述和以下所述的兩個參數:


  • $columns:它指定圖像的寬度。
  • $rows:它指定圖像的高度。

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

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

下麵給出的程序說明了PHP中的Gmagick::setsize()函數:

使用的圖片:

程序1:

<?php 
  
// Create a new Gmagick object 
$gmagick = new Gmagick('geeksforgeeks.png'); 
  
// Set the size 
$gmagick->setsize(200, 200); 
  
// Get the size 
$size = $gmagick->getsize(); 
print_r($size); 
?>

輸出:

Array ( [columns] => 200 [rows] => 200 )

程序2:

<?php 
  
// Create a new Gmagick object 
$gmagick = new Gmagick('geeksforgeeks.png'); 
  
// Set the size 
$gmagick->setsize(600, 200); 
  
// Crop image using size 
$gmagick->cropimage( 
    $gmagick->getsize()['columns'], 
    $gmagick->getsize()['rows'], 0, 0 
); 
  
// Output the image   
header('Content-type:image/png');   
echo $gmagick;   
?>

輸出:

參考: https://www.php.net/manual/en/gmagick.setsize.php



相關用法


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