imagewbmp() - gd函数(图像处理)
imagewbmp()
(PHP 4 >= 4.0.1, PHP 5, PHP 7)
以 WBMP 格式将图像输出到浏览器或文件
说明
imagewbmp(resource $image[,string $filename[,int $foreground]]): boolimagewbmp()从$image图像创建一个名为$filename的WBMP文件。$image参数是imagecreatetruecolor()的返回值。
$filename参数是可选项,如果省略,则直接将原图像流输出。通过用header()发送image/vnd.wap.wbmp的 Content-type,可以创建直接输出 WBMP 图像的 PHP 脚本。Note:
WBMP 支持仅能用于 PHP 编译时加入了 GD-1.8 或更高版本时。
用可选的$foreground参数可以设定前景色,用imagecolorallocate()函数返回的颜色标识符。默认前景色是黑色。
参见image2wbmp(),imagepng(),imagegif(),imagejpeg()和imagetypes()。
As has been commented before, GD doesnt do a very good translation to 2-colours, especially for photos. The following routine converts to two colours, I believe using error diffusion (the algorithm's nicked off news). It's slow, but just about adequate for small images and low load. I suspect it can be made much more efficient :-) function ImageColorFloydSteinberg($dst_img, $src_img) { ImageColorAllocate($dst_img, 0,0,0); ImageColorAllocate($dst_img, 255,255,255); $grey_img = ImageCreate(ImageSX($src_img), ImageSY($src_img)); for ($a = 0; $a
内容声明:本文中引用的各种信息及资料(包括但不限于文字、数据、图表及超链接等)均来源于该信息及资料的相关主体(包括但不限于公司、媒体、协会等机构)的官方网站或公开发表的信息。部分内容参考包括:(百度百科,百度知道,头条百科,中国民法典,刑法,牛津词典,新华词典,汉语词典,国家院校,科普平台)等数据,内容仅供参考使用,不准确地方联系删除处理!本站为非盈利性质站点,本着为中国教育事业出一份力,发布内容不收取任何费用也不接任何广告!)