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


PHP imagecreatefrompng()用法及代码示例


imagecreatefrompng()函数是PHP中的内置函数,用于从PNG文件或URL创建新图像。该图像可以在程序中进一步处理。当您要编辑PNG图像时,通常使用此函数。

用法:

resource imagecreatefrompng( string $filename )

参数:该函数接受单个参数$filename,该参数保存图像的名称。


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

下面给出的程序说明了PHP中的imagecreatefrompng()函数:

程序1(查看已加载的PNG图像):

<?php 
  
// Load an image from PNG URL 
$im = imagecreatefrompng( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// View the loaded image in browser 
header('Content-type:image/png');   
imagepng($im); 
imagedestroy($im); 
?>

输出:

程序2(处理已加载的PNG图像):

<?php 
  
// Load an image from PNG URL 
$im = imagecreatefrompng( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// Flip the image 
imageflip($im, 2); 
  
// View the loaded image in browser 
header('Content-type:image/png');   
imagepng($im); 
imagedestroy($im); 
?>

输出:

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



相关用法


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