imagecreatefromgd
(PHP 4 >= 4.0.7, PHP 5, PHP 7, PHP 8)
imagecreatefromgd — 從 GD 檔案或 URL 新建一影象
說明
imagecreatefromgd(string
$filename
): resource從 GD 檔案或 URL 新建一影象。
小技巧
如已啟用fopen 包裝器,在此函式中, URL 可作為檔名。關於如何指定檔名詳見 fopen()。各種 wapper 的不同功能請參見 支援的協議和封裝協議,注意其用法及其可提供的預定義變數。
參數
-
filename
-
GD 檔案的路徑。
返回值
成功后返回圖像對像,失敗后返回 false
。
範例
示例 #1 imagecreatefromgd() 例子
<?php
// Load the gd image
$im = @imagecreatefromgd('./test.gd');
// Test if the image was loaded
if(!is_resource($im))
{
die('Unable to load gd image!');
}
// Do image operations here
// Save the image
imagegd($im, './test_updated.gd');
imagedestroy($im);
?>