GD and Image 함수 목록
PHP Manual

imagedestroy

(PHP 4, PHP 5)

imagedestroyDestroy an image

설명

bool imagedestroy ( resource $image )

imagedestroy() frees any memory associated with image image .

인수

image

imagecreatetruecolor() 등의 이미지 생성 함수에서 반환한 이미지 자원.

반환값

성공할 경우 TRUE를, 실패할 경우 FALSE를 반환합니다.

예제

Example #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 함수 목록
PHP Manual