PHP | imagecreatefrompng()函数
imagecreatefrompng()函数是PHP中的一个内置函数,用于从 PNG 文件或 URL 创建新图像。该图像可以在程序中进一步处理。当您要编辑 PNG 图像时,通常会使用此函数。
句法:
resource imagecreatefrompng( string $filename )
参数:此函数接受单个参数$filename ,其中包含图像的名称。
返回值:此函数成功时返回图像资源标识符,错误时返回 FALSE。
下面给出的程序说明了PHP中的imagecreatefrompng()函数:
程序 1(查看加载的 PNG 图像):
输出:
程序 2(处理加载的 PNG 图像):
输出:
参考: https://www. PHP.net/manual/en/函数.imagecreatefrompng。 PHP