📜  PHP | imagexbm()函数

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

PHP | imagexbm()函数

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

句法:

bool imagexbm( resource $image, int $to, int $foreground)

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

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

返回值:此函数在成功时返回 TRUE,在错误时返回 FALSE。

下面的例子说明了PHP中的imagexbm()函数

示例 1:在此示例中,我们将在浏览器中下载图像。


输出:

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

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


输出:

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

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