imagecreatefrompng()函數是PHP中用于創建一個新的圖像資源,從給定的PNG圖像文件中加載圖像數據。
以下是一個簡單的示例,演示如何使用imagecreatefrompng()函數加載一個PNG文件:
// 從PNG文件創建一個新的圖像資源
$image = imagecreatefrompng('example.png');
// 檢查創建圖像資源是否成功
if ($image) {
// 在瀏覽器中顯示圖像
header('Content-Type: image/png');
imagepng($image);
// 釋放圖像資源
imagedestroy($image);
} else {
echo 'Failed to create image.';
}
請確保將上面的示例中的example.png
替換為您實際要加載的PNG文件的路徑。另外,記得在使用完圖像資源后調用imagedestroy()
函數來釋放內存。