(PHP 4中“= 4.0.5,PHP 5中)imag">
当前位置:Gxlcms > PHP教程 > phpmage2wbmp函数_PHP教程

phpmage2wbmp函数_PHP教程

时间:2021-07-01 10:21:17 帮助过:15人阅读

image2wbmp
(PHP 4中“= 4.0.5,PHP 5中)

image2wbmp - 输出图像浏览器或文件

报告错误描述
布尔image2wbmp($oimg[,$filename[,soruce]])
image2wbmp()输出或保存一个给定的图像WBMP版本。

报告错误参数

图片
图像资源,通过创造的图像功能,如,一返回imagecreatetruecolor()。

文件名
路径保存的文件。如果没有给出原始图像流将被直接输出。

开始
阈值介于0和255(含)。


报告错误返回值
返回TRUE,成功或失败则返回FALSE。

报告错误的例子

$file = 'php.png';
$image = imagecreatefrompng($file);

header('Content-type: ' . image_type_to_mime_type(IMAGETYPE_WBMP));
image2wbmp($image); // output the stream directly
imagedestroy($image);
?>


www.bkjia.comtruehttp://www.bkjia.com/PHPjc/445016.htmlTechArticleimage2wbmp (PHP 4中= 4.0.5,PHP 5中) image2wbmp - 输出图像浏览器或文件 报告错误描述 布尔image2wbmp($oimg[,$filename[,soruce]]) image2wbmp()输出...

人气教程排行