📜  PHP | image2wbmp()函数

📅  最后修改于: 2022-05-13 01:56:56.183000             🧑  作者: Mango

PHP | image2wbmp()函数

image2wbmp()函数是PHP中的一个内置函数,用于向浏览器或文件显示图像。此函数的主要用途是在浏览器中查看图像并将任何其他图像类型转换为 WBMP。
句法:

bool image2wbmp( resource $image, int $filename, int $foreground)

参数:此函数接受三个参数,如上所述,如下所述:

  • $image:它指定要处理的图像资源。
  • $filename(可选):它指定保存文件的路径。
  • $foreground(可选):它指定图像的前景。

返回值:此函数在成功时返回 TRUE,在错误时返回 FALSE。
下面的例子说明了PHP中的image2wbmp()函数
示例 1:在此示例中,我们将在浏览器中下载图像。

php


php


输出:

This will download your image as download, 
further you can rename this file to anything like 
geeksforgeeks.wbmp and use it.

示例 2:在此示例中,我们将 PNG 转换为 WBMP。

PHP


输出:

This will save the WBMP version of image 
in the same folder where your PHP script is.

参考: https://www. PHP.net/manual/en/函数.image2wbmp。 PHP