PHP image2wbmp 图像GD库函数

  • 定义和用法

    image2wbmp - 以 WBMP 格式将图像输出到浏览器或文件
  • 版本支持

    PHP4 PHP5 PHP7
    支持 支持 支持
  • 语法

    image2wbmp ( resource $image [, string $filename [, int $threshold ]] )
    
    image2wbmp() 从 image 图像创建一个名为 filename 的 WBMP 文件。image 参数是某个图像创建函数的返回值,例如 imagecreatetruecolor()
    WBMP 支持仅在 PHP 编译时加入了 GD-1.8 或更高版本时可用。
  • 参数

    参数 必需的 描述
    image 图片资源
    filename 参数是可选项,如果省略,则直接将原图像流输出。通过用 header() 发送 image/vnd.wap.wbmp 的 Content-type,可以创建直接输出 WBMP 图像的 PHP 脚本。
    threshold  
  • 返回值

    未说明。
  • 示例

    $filename = 'https://www.jc2182.com/images/f1.jpg';
    
    $image = imagecreatefromjpeg($filename);
    header('Content-type: ' . image_type_to_mime_type(IMAGETYPE_WBMP));
    
    image2wbmp($image); // output the stream directly
    
  • 相关函数

    imagewbmp() - 以 WBMP 格式将图像输出到浏览器或文件