PHP | imagepng()函数
imagepng()函数是PHP中的一个内置函数,用于向浏览器或文件显示图像。此函数的主要用途是在浏览器中查看图像,将任何其他图像类型转换为 PNG 并对图像应用过滤器。
句法:
bool imagepng( resource $image, int $to, int $quality, int $filters)
参数:此函数接受三个参数,如上所述,如下所述:
- $image:它指定要处理的图像资源。
- $to (可选):它指定保存文件的路径。
- $quality(可选):它指定图像的质量。
- $filters(可选):它指定应用于图像的过滤器,这有助于减小图像大小。
返回值:此函数在成功时返回 TRUE,在错误时返回 FALSE。
下面的例子说明了PHP中的imagepng()函数:
示例 1:在此示例中,我们将在浏览器中查看图像。
php
php
php
输出:
示例 2:在此示例中,我们将 JPEG 转换为 PNG。
PHP
输出:
This will save the PNG version of image in the same folder where your PHP script is.
程序 3:在这个例子中,我们将使用过滤器。
PHP
输出:
This will save the image1.png as compressed and image2.png as uncompressed image
参考: https://www. PHP.net/manual/en/函数.imagepng。 PHP