imagecreatefromgd2part()函數是PHP中的內置函數,用於從GD2文件或URL的給定部分創建新圖像。此外,可以在程序中處理此圖像。通常,瀏覽器不支持gd2擴展名,因此可以將其轉換為png並在瀏覽器中查看。
用法:
resource imagecreatefromgdpart( string $filename, int $srcX, int $srcY, int $width, int $height )
參數:該函數接受上述和以下所述的五個參數:
- $filename:它指定GD2圖像。
- $srcX:它指定源點的x坐標。
- $srcY:它指定源點的y坐標。
- $width:它指定圖像的寬度。
- $height:它指定圖像的高度。
返回值:成功時此函數返回圖像資源標識符,錯誤時返回FALSE。
下麵給出的程序說明了PHP中的imagecreatefromgd2part()函數:
程序1(在瀏覽器中查看gd2文件):
<?php
// Load the GD2 image from local folder GD2 images
// can be created with imagegd2() function
$im = imagecreatefromgd2part('./geeksforgeeks.gd2',
300, 0, 300, 300);
// Convert to PNG and output to the browser
header('Content-type:image/png');
imagepng($im);
imagedestroy($im);
?>
輸出:
程式2(將gd2轉換成jpeg):
<?php
// Load the GD2 image from local folder GD2 images
// can be created with imagegd2() function
$im = imagecreatefromgd2part('./geeksforgeeks.gd2',
30, 0, 100, 250);
// Convert to JPEG and save to local folder
imagejpeg($im, 'newgeeksforgeeks.jpeg');
imagedestroy($im);
?>
輸出:
It will load the part of image and convert it into JPEG and saves it into same folder.
參考: https://www.php.net/manual/en/function.imagecreatefromgd2part.php
相關用法
- p5.js second()用法及代碼示例
- CSS var()用法及代碼示例
- p5.js day()用法及代碼示例
- CSS url()用法及代碼示例
- p5.js pow()用法及代碼示例
- PHP each()用法及代碼示例
- PHP next()用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- PHP pow( )用法及代碼示例
- p5.js hue()用法及代碼示例
- p5.js value()用法及代碼示例
- p5.js hex()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | imagecreatefromgd2part() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。