PHP image2wbmp - 輸出WBMP圖片

PHP 圖像處理PHP 圖像處理

image2wbmp — 以 WBMP 格式將圖像輸出到瀏覽器或文件。

語法

int image2wbmp ( resource $image [, string $filename [, int $threshold ]] )

image2wbmp() 從 image 圖像創(chuàng)建一個名為 filename 的 WBMP 文件。image 參數(shù)是某個創(chuàng)建圖像函數(shù)的返回值,例如 imagecreatetruecolor()。

filename 參數(shù)是可選項,如果省略,則直接將原圖像流輸出。

實例

<?php
$file = 'php.jpg';
$image = imagecreatefrompng($file);
header('Content-type: ' . image_type_to_mime(IMAGETYPE_WBMP));
image2wbmp($file); // 直接將原圖像流輸出
?>

PHP 圖像處理PHP 圖像處理