(PHP 4, PHP 5, PHP 7)
imagedestroy — Destroy an image
$image
)
imagedestroy() frees any memory associated
with image image
.
image
O resursă - imagine, întoarsă de una din funcțiile de creare a imaginilor, cum ar fi imagecreatetruecolor().
Întoarce valoarea TRUE
în cazul
succesului sau FALSE
în cazul eșecului.
Example #1 Using imagedestroy() example
<?php
// create a 100 x 100 image
$im = imagecreatetruecolor(100, 100);
// alter or save the image
// frees image from memory
imagedestroy($im);
?>