PHP image2wbmp() 函数

返回上一级

PHP 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 5 函数参考手册

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.