= 4.0.5, PHP 5, PHP 7)png2wbmp — 將 PNG 圖像文件轉(zhuǎn)換為 WBMP 圖像文件說明png2wbmp( string $pngname, string $wbmpname, int $dest_height, i">

png2wbmp

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

png2wbmp將 PNG 圖像文件轉(zhuǎn)換為 WBMP 圖像文件

說明

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

將名為 pngname 的 PNG 文件轉(zhuǎn)換為 WBMP 格式,并存為 wbmpname。用 d_heightd_width 指定目標(biāo)圖像的高度和寬度。

參數(shù)

pngname

PNG 文件的路徑。

wbmpname

目標(biāo) WBMP 文件的路徑。

dest_height

目標(biāo)圖像的高度。

dest_width

目標(biāo)圖像的寬度。

threshold

閾值,在 0 到 8 之間(含)。

返回值

成功時返回 true, 或者在失敗時返回 false。

范例

示例 #1 png2wbmp() 例子

<?php
// 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 圖像文件轉(zhuǎn)換為 WBMP 圖像文件