WBMP 不是 Windows 點陣圖,它是無線點陣圖。只是要清楚地說明這一點。
(PHP 4 >= 4.0.5, PHP 5, PHP 7)
png2wbmp — 將 PNG 影像檔轉換為 WBMP 影像檔
此函式自 PHP 7.2.0 起已被標記為 *已棄用*,並自 PHP 8.0.0 起已被 *移除*。強烈建議不要依賴此函式。
將 PNG 檔案轉換為 WBMP 檔案。
pngname
PNG 檔案的路徑。
wbmpname
目標 WBMP 檔案的路徑。
dest_height
目標圖片高度。
dest_width
目標圖片寬度。
threshold
閾值,介於 0 到 8 之間(含)。
範例 #1 png2wbmp() 範例
<?php
// 目標 png 的路徑
$path = './test.png';
// 取得圖片大小
$image = getimagesize($path);
// 轉換圖片
png2wbmp($path, './test.wbmp', $image[1], $image[0], 7);
?>