PHP png2wbmp 图像GD库函数
-
定义和用法
png2wbmp - 将 PNG 图像文件转换为 WBMP 图像文件 -
版本支持
PHP4 PHP5 PHP7 支持 支持 支持 注意: WBMP 支持仅在 PHP 与 GD-1.8 或更高版本一起编译时可用。
-
语法
png2wbmp ( string $pngname , string $wbmpname , int $dest_height , int $dest_width , int $threshold )
png2wbmp() 将名为 pngname 的 PNG 文件转换为 WBMP 格式,并存为 wbmpname。用 d_height 和 d_width 指定目标图像的高度和宽度。 -
参数
参数 必需的 描述 pngname 是 PNG 文件的路径。 wbmpname 是 目标 WBMP 文件的路径。 dest_height 是 目标图像高度。 dest_width 是 目标图像宽度。 threshold 是 阈值,在 0 和 8 之间(含)。 -
返回值
成功时返回 TRUE, 或者在失败时返回 FALSE。 -
示例
// Path to the target png $path = './test.png'; // Get the image sizes $image = getimagesize($path); // Convert image png2wbmp($path, './test.wbmp', $image[1], $image[0], 7);
-
相关函数
jpeg2wbmp() - 将 JPEG 图像文件转换为 WBMP 图像文件