欢迎访问服务器技术网-www.fuwuqijishu.com

PHP image2wbmp – 输出WBMP图片

PHP fuwuqijishu 2年前 (2022-09-04) 92次浏览 0个评论 扫描二维码

PHP image2wbmp – 输出WBMP图片

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 图像处理

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2119.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900