PHP image2wbmp – 输出WBMP图片
PHP image2wbmp - 输出WBMP图片
image2wbmp — 以 WBMP 格式将图像输出到浏览器或文件。
语法
int image2wbmp ( resource $image [, string $filename [, int $threshold ]] )
image2wbmp() 从 image 图像创建一个名为 filename 的 WBMP 文件。image 参数是某个创建图像函数的返回值,例如 imagecreatetruecolor()。
filename 参数是可选项,如果省略,则直接将原图像流输出。
实例
<?php $file = 'php.jpg'; $image = imagecreatefrompng($file); header('Content-type: ' . image_type_to_mime(IMAGETYPE_WBMP)); image2wbmp($file); // 直接将原图像流输出 ?>
相关文章
- PHP 变量
- PHP EOF(heredoc) 使用说明
- PHP 命名空间 namespace
- PHP 多维数组
- PHP 包含文件 include 和 require 语句
- PHP 文件处理
- PHP 文件上传
- PHP 异常处理
- PHP array_count_values() 函数
- PHP array_diff_key() 函数
- PHP array_intersect() 函数
- PHP array_key_exists() 函数
- PHP array_merge_recursive() 函数
- PHP array_slice() 函数
- PHP current() 函数
- PHP each() 函数
- PHP uksort() 函数
- PHP 5 Filesystem 函数
- PHP Libxml 函数
- PHP PDO