PHP | imagewbmp()函数
imagewbmp()函数是PHP中的一个内置函数,用于向浏览器或文件显示图像。此函数的主要用途是在浏览器中查看图像并将任何其他图像类型转换为 WBMP。
句法:
bool imagewbmp( resource $image, int $to, int $foreground )
参数:此函数接受三个参数,如上所述,如下所述:
- $image:指定要执行操作的图片资源文件。
- $to (可选):它指定保存文件的路径。
- $foreground(可选):它指定图像的前景。
返回值:此函数在成功时返回 TRUE,在错误时返回 FALSE。
下面的例子说明了PHP中的imagewbmp()函数:
示例 1:在此示例中,我们将在浏览器中下载图像。
输出:
This will download your image as download, further you can rename
this file to anything like geeksforgeeks.wbmp and use it.
示例 2:在此示例中,我们将 PNG 转换为 WBMP。
输出:
This will save the WBMP version of image in the same
folder where your PHP script exist.
参考: https://www. PHP.net/manual/en/函数.imagewbmp。 PHP