The imagepng() outputs a GD image stream (image) in PNG format to standard output (usually the browser) or, if a filename is given by the filename it outputs the image to the file.
<?php
$im = imagecreatefrompng ("test.png");
imagepng ($im);
?>See also imagegif(), imagewbmp(), imagejpeg(), imagetypes().
| This HTML Help has been published using the chm2web software. |