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