= 4.0.5, PHP 5, PHP 7)png2wbmp — 將 PNG 圖像文件轉(zhuǎn)換為 WBMP 圖像文件說明png2wbmp( string $pngname, string $wbmpname, int $dest_height, i">
(PHP 4 >= 4.0.5, PHP 5, PHP 7)
png2wbmp — 將 PNG 圖像文件轉(zhuǎn)換為 WBMP 圖像文件
$pngname
,$wbmpname
,$dest_height
,$dest_width
,$threshold
將名為 pngname
的 PNG 文件轉(zhuǎn)換為
WBMP 格式,并存為 wbmpname
。用
d_height
和 d_width
指定目標(biāo)圖像的高度和寬度。
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);
?>