PHP image2wbmp - 输出WBMP图片
PHP 教程
· 2019-01-31 07:29:24
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 教程 文章: https://www.codercto.com/courses/l/5.html
Twisted Network Programming Essentials
Abe Fettig / O'Reilly Media, Inc. / 2005-10-20 / USD 29.95
Developing With Python's Event-driven Framework一起来看看 《Twisted Network Programming Essentials》 这本书的介绍吧!