PHP image2wbmp – 輸出WBMP圖片
PHP image2wbmp - 輸出WBMP圖片
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); // 直接將原圖像流輸出 ?>
相關(guān)文章
- PHP 變量
- PHP EOF(heredoc) 使用說明
- PHP 命名空間 namespace
- PHP 多維數(shù)組
- PHP 包含文件 include 和 require 語句
- PHP 文件處理
- PHP 文件上傳
- PHP 異常處理
- PHP array_count_values() 函數(shù)
- PHP array_diff_key() 函數(shù)
- PHP array_intersect() 函數(shù)
- PHP array_key_exists() 函數(shù)
- PHP array_merge_recursive() 函數(shù)
- PHP array_slice() 函數(shù)
- PHP current() 函數(shù)
- PHP each() 函數(shù)
- PHP uksort() 函數(shù)
- PHP 5 Filesystem 函數(shù)
- PHP Libxml 函數(shù)
- PHP PDO