Gmagick::getsize()函數是PHP中的內置函數,用於獲取與Gmagick對象關聯的大小。
用法:
array Gmagick::getsize( void )
參數:此函數不接受任何參數。
返回值:該函數返回一個包含鍵“rows”和“columns”的關聯數組。
異常:此函數在錯誤時引發GmagickException。
下麵給出的程序說明了PHP中的Gmagick::getsize()函數:
程序1:
<?php
// Create a new Gmagick object
// https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png
$gmagick = new Gmagick('geeksforgeeks.png');
// Get the size
$res = $gmagick->getsize();
print("<pre>".print_r($res, true)."</pre>");
?>
輸出:
Array // Which is the default value ( [columns] => 0 [rows] => 0 )
程序2:
<?php
// Create a new Gmagick object
// https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png
$gmagick = new Gmagick('geeksforgeeks.png');
// Set the size
$gmagick->setsize(800, 300);
// Get the size
$res = $gmagick->getsize();
print("<pre>".print_r($res, true)."</pre>");
?>
輸出:
Array ( [columns] => 800 [rows] => 300 )
參考: https://www.php.net/manual/en/gmagick.getsize.php
相關用法
- PHP DirectoryIterator getSize()用法及代碼示例
- PHP SplFileInfo getSize( )用法及代碼示例
- PHP SplFixedArray getSize()用法及代碼示例
- PHP Imagick getSize()用法及代碼示例
- PHP Gmagick getimageiterations()用法及代碼示例
- PHP Gmagick setimageblueprimary()用法及代碼示例
- PHP Gmagick magnifyimage()用法及代碼示例
- PHP Gmagick getimageinterlacescheme()用法及代碼示例
- PHP Gmagick getImageDispose()用法及代碼示例
- PHP Gmagick commentImage()用法及代碼示例
- PHP Gmagick charcoalimage()用法及代碼示例
- PHP Gmagick getImageRenderingIntent()用法及代碼示例
- PHP Gmagick frameimage()用法及代碼示例
- PHP Gmagick edgeimage()用法及代碼示例
- PHP Gmagick chopimage()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | Gmagick getsize() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。