當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP imagecreatefromgd2part()用法及代碼示例


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



相關用法


注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | imagecreatefromgd2part() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。