当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP imagecreatefromgd()用法及代码示例


imagecreatefromgd()函数是PHP中的内置函数,用于从GD文件或URL创建新图像。此外,可以在程序中处理此图像。可以使用imagegd()函数将图像转换为GD格式。

用法:

resource imagecreatefromgd( string $filename )

参数:该函数接受单个参数$filename,该参数保存文件的名称或URL。


返回值:成功时此函数返回图像资源标识符,错误时返回FALSE。

下面给出的程序说明了PHP中的imagecreatefromgd()函数:程序1(在浏览器中查看gd文件):

<?php 
// Load the GD image from localfile 
$im = imagecreatefromgd('geeksforgeeks.gd'); 
  
// Output the image to browser 
imagegd($im); 
imagedestroy($im); 
?>

输出:

This will load gd image in text form as it is not supported by browser.

程序2(将GD转换为png并在浏览器中查看):

<?php 
// As GD isn't supported in browser, it can be 
// converted into PNG to be viewed in browser 
// Load the GD image 
$im = imagecreatefromgd('geeksforgeeks.gd'); 
  
// Output the image to browser 
header("Content-Type:image/png"); 
imagepng($im); 
imagedestroy($im); 
?>

输出:

计划3(将GD转换为jpg):

<?php 
// Load the GD image 
$im = imagecreatefromgd('geeksforgeeks.gd'); 
  
// Convert the image and save in local folder 
imagejpeg($im, 'geeksforgeeks.jpg'); 
imagedestroy($im); 
?>

输出:

This will convert GD image into JPEG and save in local folder.

参考: https://www.php.net/manual/en/function.imagecreatefromgd.php



相关用法


注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | imagecreatefromgd() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。