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


PHP imagegd()用法及代码示例


imagegd()函数是PHP中的内置函数,用于将GD图像输出到浏览器或文件。这对于将任何其他图像类型转换为gd最为有用。 imagecreatefromgd()函数可用于进一步读取gd图像。

用法:

bool imagegd( resource $image, float $to)

参数:该函数接受上述和以下描述的两个参数:


  • $image:它指定要处理的图像。
  • $to (Optional):它指定将文件保存到的路径。

返回值:如果成功,则此函数返回TRUE;如果失败,则返回FALSE。

异常:该函数在出错时引发Exception。

下面给出的程序说明了PHP中的imagegd()函数:程序1(查看GD文件):

<?php 
// Create a blank image and add text 
$im = imagecreatetruecolor(100, 100); 
$text_color = imagecolorallocate($im, 10, 10, 51); 
imagestring($im, 0, 20, 20,  "GeeksforGeeks", $text_color); 
  
// Output the image as string 
imagegd($im); 
?>

输出:

This will output the image in the form of string as gd isn't supported in browser.

程序2(将图像转换为gd):

<?php 
// Create a image from png 
$image = imagecreatefrompng('https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// Convert into GD and save to the same folder 
imagegd($image, 'geeksforgeeks.gd'); 
?>

输出:

This will save a image with name geeksforgeeks.gd in the same folder.

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



相关用法


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