imagecreatefromgd2part

(PHP 4 >= 4.0.7, PHP 5)

imagecreatefromgd2partCreate a new image from a given part of GD2 file or URL

說明

resource imagecreatefromgd2part ( string $filename , int $srcX , int $srcY , int $width , int $height )

Create a new image from a given part of GD2 file or URL.

Tip

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

參數

filename

Path to the GD2 image.

srcX

x-coordinate of source point.

srcY

y-coordinate of source point.

width

來源影像寬度。

height

來源影像高度。

回傳值

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

範例

Example #1 imagecreatefromgd2part() example

<?php
// For this example we need the image size before
$image getimagesize('./test.gd2');

// Create the image instance now we got the image 
// sizes
$im imagecreatefromgd2part('./test.gd2'44, ($image[0] / 2) - 6, ($image[1] / 2) - 6);

// Do an image operation, in this case we emboss the 
// image if PHP 5+
if(function_exists('imagefilter'))
{
    
imagefilter($imIMG_FILTER_EMBOSS);
}

// Save optimized image
imagegd2($im'./test_emboss.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