imagecreatefromgd2part
(PHP 4 >= 4.0.7, PHP 5, PHP 7, PHP 8)
imagecreatefromgd2part — 從給定的 GD2 檔案或 URL 中的部分新建一影象
說明
imagecreatefromgd2part(
string
int
int
int
int
): resource
string
$filename
,int
$srcX
,int
$srcY
,int
$width
,int
$height
): resource
Create a new image from a given part of GD2 file or URL.
小技巧
如已啟用fopen 包裝器,在此函式中, URL 可作為檔名。關於如何指定檔名詳見 fopen()。各種 wapper 的不同功能請參見 支援的協議和封裝協議,注意其用法及其可提供的預定義變數。
參數
-
filename
-
Path to the GD2 image.
-
srcX
-
x-coordinate of source point.
-
srcY
-
y-coordinate of source point.
-
width
-
源圖像的寬度。
-
height
-
源圖像的高度。
返回值
成功后返回圖像對像,失敗后返回 false
。
範例
示例 #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', 4, 4, ($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($im, IMG_FILTER_EMBOSS);
}
// Save optimized image
imagegd2($im, './test_emboss.gd2');
imagedestroy($im);
?>