imagecreatefromgd2

(PHP 4 >= 4.0.7, PHP 5)

imagecreatefromgd2Create a new image from GD2 file or URL

說明

resource imagecreatefromgd2 ( string $filename )

Create a new image from GD2 file or URL.

Tip

如果「fopen wrappers」已經被啟用,則在本函式中可以把 URL 作為檔案名來使用。請參閱 fopen() 函式來獲取如何指定文件名的詳情以及支援 URL 協定列表:Supported Protocols and Wrappers

參數

filename

Path to the GD2 image.

回傳值

成功後回傳影像資源,失敗則回傳 FALSE

範例

Example #1 imagecreatefromgd2() example

<?php
// Load the gd2 image
$im imagecreatefromgd2('./test.gd2');

// Apply an effect on the image, in this 
// case negate the image if PHP 5+
if(function_exists('imagefilter'))
{
    
imagefilter($imIMG_FILTER_NEGATE);
}

// Save the image
imagegd2($im'./test_updated.gd2');
imagedestroy($im);
?>

註釋

Note: 本函式需要 GD 2.0.1 或更高版本(推薦 2.0.28 及更高版本)。

Warning

PHP 4.3.0 之前的 Windows PHP版本,即使啟動allow_url_fopen選項,也不支援由此函式存取遠端檔案。

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top