PHP | png2wbmp()函数
png2wbmp()函数是PHP中的一个内置函数,用于将 PNG 图像文件转换为 WBMP 图像文件。
句法:
bool png2wbmp( string $pngname,
int $wbmpname, int $dest_height,
int $dest_width, int $threshold )
参数:该函数接受上面提到的五个参数,如下所述:
- $pngname:它指定PNG文件的路径。
- $wbmpname:它指定目标 WBMP 文件的路径。
- $dest_height:它指定目标图像的高度。
- $dest_width:它指定目标图像的宽度。
- $threshold:指定阈值。
返回值:此函数在成功时返回 TRUE,在失败时返回 FALSE。
下面给出的程序说明了PHP中的png2wbmp()函数:
方案一:
输出:
This will save the WBMP version of PNG in the same folder.
方案二:
输出:
参考: https://www. PHP.net/manual/en/函数.png2wbmp。 PHP