亚洲区国产区激情区无码区,国产成人mv视频在线观看,国产A毛片AAAAAA,亚洲精品国产首次亮相在线

PHP 菜鳥教程

PHP 高級教程

PHP & MySQL

PHP 參考手冊

PHP image2wbmp() 函數(shù)輸出WBMP圖片用法及示例

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 圖像處理