image2wbmp 以 WBMP 格式将图像输出到浏览器或文件

发表日期:2021-07-01 08:55:56 | 来源: | | 浏览(927) 分类:GD 和图像处理 函数

image2wbmp

(PHP 4 >= 4.0.5, PHP 5, PHP 7)

image2wbmp以 WBMP 格式将图像输出到浏览器或文件

说明

image2wbmp(resource $image, string $filename = ?, int $threshold = ?): int

image2wbmp()image 图像创建一个名为 filenameWBMP 文件。image 参数是某个图像创建函数的返回值,例如 imagecreatetruecolor()

filename 参数是可选项,如果省略,则直接将原图像流输出。通过用 header() 发送 image/vnd.wap.wbmp 的 Content-type,可以创建直接输出 WBMP 图像的 PHP 脚本。

示例 #1 image2wbmp() 例子

<?php 
$file = 'php.jpg';
$image = imagecreatefrompng($file);
header('Content-type: ' . image_type_to_mime(IMAGETYPE_WBMP));
image2wbmp($file);
 // output the stream directly?>

注意:

WBMP 支持仅在 PHP 编译时加入了 GD-1.8 或更高版本时可用。

参见 imagewbmp()

集速网 copyRight © 2015-2022 宁ICP备15000399号-1 宁公网安备 64010402001209号
与其临渊羡鱼,不如退而结网
欢迎转载、分享、引用、推荐、收藏。