imagepng

(PHP 3 >= 3.0.13, PHP 4, PHP 5)

imagepng -- 以 PNG 格式將圖像輸出到瀏覽器或檔案

說明

bool imagepng ( resource image [, string filename] )

imagepng() 將 GD 圖像流(image)以 PNG 格式輸出到標準輸出(通常為瀏覽器),或是若果用 filename 給出了檔案名則將其輸出到該檔案。

<?php
$im 
imagecreatefrompng("test.png");
imagepng($im);
?>

參見 imagegif()imagewbmp()imagejpeg()imagetypes()