当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP imagedestroy()用法及代码示例


imagedestroy()函数是PHP中的内置函数,用于破坏图像并释放与该图像关联的任何内存。

用法:

bool imagedestroy( resource $image )

参数:该函数接受一个包含图像名称的单个参数$image。


返回值:成功时返回TRUE,失败时返回FALSE。

以下示例说明了PHP中的imagedestroy()函数:

范例1:使用后破坏图像。

<?php 
  
// Load the png image 
$im = imagecreatefrompng( 
'https://media.geeksforgeeks.org/wp-content/uploads/20200123135210/geeksforgeeksinverted.png'); 
   
// Crop the image 
$cropped = imagecropauto($im, IMG_CROP_BLACK); 
  
// Convert it to a png file 
header('Content-type:image/png');   
imagepng($cropped); 
  
// Destroy the cropped image to deallocate the memory 
imagedestroy($cropped); 
?>

输出:

$cropped variable is destroy by the end line
and you can't access it after that line.

范例2:检查变量是否被破坏。

<?php 
  
// Load the png image 
$im = imagecreatefrompng( 
'https://media.geeksforgeeks.org/wp-content/uploads/20200123135210/geeksforgeeksinverted.png'); 
  
header('Content-type:image/png'); 
  
// Destroy the image to deallocate the memory 
imagedestroy($im); 
  
// Try to access the destroyed variable 
imagepng($im); 
?>

输出:

PHP log will give a error as the variable is destroyed. PHP Warning: imagepng():supplied resource is not a valid Image resource.

参考: https://www.php.net/manual/en/function.imagedestroy.php



相关用法


注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | imagedestroy() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。