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


PHP Imagick getPage()用法及代碼示例


Imagick::getPage()函數是PHP中的一個內置函數,用於以關聯數組格式返回與Imagick對象關聯的頁麵的幾何形狀。

用法:

array Imagick::getPage( void )

參數:該函數不接受任何參數。


返回值:此函數返回帶有鍵“width”,“height”,“x”和“y”的關聯數組。

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

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

示例1:

<?php 
  
// Create a new imagick object 
$imagick = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// Get the Page Geometry 
$geometry = $imagick->getPage(); 
  
print_r($geometry); 
?>

輸出:

Array ( [width] => 0 [height] => 0 [x] => 0 [y] => 0 )

示例2:

<?php 
  
// Create a new imagick object 
$imagick = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// Set the Page Geometry 
$imagick->setPage(200, 300, 0, 0); 
  
// Get the Page Geometry 
$geometry = $imagick->getPage(); 
  
print_r($geometry); 
?>

輸出:

Array ( [width] => 200 [height] => 300 [x] => 0 [y] => 0 )

參考: https://www.php.net/manual/en/imagick.getpage.php



相關用法


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