png2wbmp 将 PNG 图像文件转换为 WBMP 图像文件

发表日期:2021-07-01 08:56:02 | 来源: | | 浏览(742) 分类:GD 和图像处理 函数

png2wbmp

(PHP 4 >= 4.0.5, PHP 5, PHP 7)

png2wbmp将 PNG 图像文件转换为 WBMP 图像文件

说明

png2wbmp(
    string $pngname,
    string $wbmpname,
    int $dest_height,
    int $dest_width,
    int $threshold
): bool

将名为 pngname 的 PNG 文件转换为 WBMP 格式,并存为 wbmpname。用 d_heightd_width 指定目标图像的高度和宽度。

参数

pngname

PNG 文件的路径。

wbmpname

目标 WBMP 文件的路径。

dest_height

目标图像的高度。

dest_width

目标图像的宽度。

threshold

阈值,在 0 到 8 之间(含)。

返回值

成功时返回 true, 或者在失败时返回 false

范例

示例 #1 png2wbmp() 例子

<?php 
// Path to the target png$path = './test.png';
// Get the image sizes$image = getimagesize($path);
// Convert imagepng2wbmp($path, './test.wbmp', $image[1], $image[0], 7);
?>

注释

参见

  • jpeg2wbmp() - 将 JPEG 图像文件转换为 WBMP 图像文件

集速网 copyRight © 2015-2022 宁ICP备15000399号-1 宁公网安备 64010402001209号
与其临渊羡鱼,不如退而结网
欢迎转载、分享、引用、推荐、收藏。