Gmagick::destroy()函数是PHP中的内置函数,用于销毁Gmagick对象并释放与其相关的所有资源。
用法:
bool Gmagick::destroy( void )
参数:此函数不接受任何参数。
返回值:成功时此函数返回TRUE。
Exceptions:此函数在错误时引发GmagickException。
Used Image:捕获画布区域。
下面给出的程序说明了PHP中的Gmagick::destroy()函数:
程序1:
<?php
// Create a new Gmagick object
$gmagick = new Gmagick(
'geeksforgeeks.png');
// Destroy the object resources
$gmagick->destroy();
// Output the image
header('Content-type:image/png');
echo $gmagick;
?>
输出:
No image is shown as output because it is destroyed.
程序2:
<?php
// Create a new Gmagick object
$gmagick = new Gmagick(
'geeksforgeeks.png');
$gmagick->setimageresolution(20, 20);
echo "Before destruction:<br>";
print("<pre>".print_r($gmagick->getimageresolution(), true)."</pre>");
// Destroy the object resources
$gmagick->destroy();
echo "After destruction:<br>";
print("<pre>".print_r($gmagick->getimageresolution(), true)."</pre>");
?>
输出:
Before destruction: Array ( [x] => 20 [y] => 20 ) After destruction:
参考: https://www.php.net/manual/en/gmagick.destroy.php
相关用法
- PHP Imagick destroy()用法及代码示例
- PHP ImagickDraw destroy()用法及代码示例
- PHP Gmagick getimagesignature()用法及代码示例
- PHP Gmagick getpackagename()用法及代码示例
- PHP Gmagick setimagechanneldepth()用法及代码示例
- PHP Gmagick getversion()用法及代码示例
- PHP Gmagick getreleasedate()用法及代码示例
- PHP Gmagick read()用法及代码示例
- PHP Gmagick readimage()用法及代码示例
- PHP Gmagick queryformats()用法及代码示例
- PHP Gmagick annotateImage()用法及代码示例
- PHP Gmagick drawimage()用法及代码示例
- PHP Gmagick queryfonts()用法及代码示例
- PHP Gmagick getquantumdepth()用法及代码示例
- PHP Gmagick getimageunits()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | Gmagick destroy() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。