php man page for imagedestroy

Query: imagedestroy

OS: php

Section: 3

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

IMAGEDESTROY(3) 							 1							   IMAGEDESTROY(3)

imagedestroy - Destroy an image

SYNOPSIS
bool imagedestroy (resource $image)
DESCRIPTION
imagedestroy(3) frees any memory associated with image $image.
PARAMETERS
o $ image -An image resource, returned by one of the image creation functions, such as imagecreatetruecolor(3).
RETURN VALUES
Returns TRUE on success or FALSE on failure.
EXAMPLES
Example #1 Using imagedestroy(3) example <?php // create a 100 x 100 image $im = imagecreatetruecolor(100, 100); // alter or save the image // frees image from memory imagedestroy($im); ?> PHP Documentation Group IMAGEDESTROY(3)
Related Man Pages
imagegd(3) - php
imageistruecolor(3) - php
imagepalettetotruecolor(3) - php
imagesettile(3) - php
imagetruecolortopalette(3) - php
Similar Topics in the Unix Linux Community
ttf trouble :-(