GD and Image Funkcje
PHP Manual

imagedestroy

(PHP 4, PHP 5)

imagedestroyDestroy an image

Opis

bool imagedestroy ( resource $image )

imagedestroy() frees any memory associated with image image.

Parametry

obraz

Zasób obrazu, zwrócony przez jedną z funkcji tworzących obrazy, taką jak imagecreatetruecolor().

Zwracane wartości

Zwraca TRUE w przypadku powodzenia, FALSE w przypadku błędu.

Przykłady

Przykład #1 Using imagedestroy() example

<?php
// create a 100 x 100 image
$im imagecreatetruecolor(100100);

// alter or save the image

// frees image from memory
imagedestroy($im);
?>


GD and Image Funkcje
PHP Manual