PHP | imagecreatefromxbm()函数
imagecreatefromxbm()函数是PHP中的一个内置函数,用于从 XBM 文件或 URL 创建新图像。 XBM 文件扩展名是用于图形 UI 系统的 X 位图图形文件。这个加载的图像可以在程序中进一步处理。当您想在从 XBM 文件加载图像后对其进行编辑时,通常会使用此函数。可以使用imagexbm()函数将图像转换为 XBM。
句法:
resource imagecreatefromxbm( string $filename )
参数:此函数接受单个参数$filename ,其中包含图像的名称。
返回值:此函数成功时返回图像资源标识符,错误时返回 FALSE。
下面给出的程序说明了PHP中的imagecreatefromxbm()函数:
方案一:
输出:
This will load the content into browser in the form of unsupported text as browsers don't support XBM.
方案二:
输出:
参考: https://www. PHP.net/manual/en/函数.imagecreatefromxbm。 PHP