imagecreatefromgd2()函數是PHP中的內置函數,用於從文件或URL創建新圖像。此外,可以在程序中處理此圖像。通常,瀏覽器不支持gd2擴展名,因此可以將其轉換為png並在瀏覽器中查看。
用法:
resource imagecreatefromgd2( string $filename )
參數:此函數接受單個參數$filename,該參數保存文件的名稱或URL。返回值:成功時此函數返回圖像資源標識符,錯誤時返回FALSE。
下麵給出的程序說明了PHP:Program 1中的imagecreatefromgd2()函數:(在瀏覽器中查看gd2文件):
的PHP
<?php
// Load the GD2 image from local folder
// GD2 images can be created with imagegd2() function
$im = imagecreatefromgd2('geeksforgeeks.gd2');
// Convert to PNG and output to the browser
header('Content-type:image/png');
imagepng($im);
imagedestroy($im);
?>
輸出:
程式2(將gd2轉換成jpeg):
的PHP
<?php
// Load the GD2 image
$im = imagecreatefromgd2('geeksforgeeks.gd2');
// Convert it to a JPEG file, press Ctrl + S to save the new jpeg image
header('Content-type:image/jpeg');
imagejpeg($im);
imagedestroy($im);
?>
輸出:
參考: https://www.php.net/manual/en/function.imagecreatefromgd2.php
相關用法
- PHP each()用法及代碼示例
- PHP next()用法及代碼示例
- p5.js pow()用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- CSS url()用法及代碼示例
- CSS var()用法及代碼示例
- p5.js day()用法及代碼示例
- PHP pow( )用法及代碼示例
- p5.js hue()用法及代碼示例
- d3.js d3.set.has()用法及代碼示例
- PHP Ds\Map put()用法及代碼示例
- p5.js value()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | imagecreatefromgd2() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。