略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: jpeg2wbmp

2024-04-28

jpeg2wbmp

(PHP 4 >= 4.0.5, PHP 5, PHP 7)

jpeg2wbmp将 JPEG 图像文件转换为 WBMP 图像文件

说明

jpeg2wbmp(
    string $jpegname,
    string $wbmpname,
    int $dest_height,
    int $dest_width,
    int $threshold
): bool

将 JPEG 图像文件转换为 WBMP 图像文件。

参数

jpegname

JPEG 文件的路径。

wbmpname

目标 WBMP 文件的路径。

dest_height

目标图像高度。

dest_width

目标图像宽度。

threshold

阈值,在 0 和 8 之间(含)。

返回值

成功时返回 true, 或者在失败时返回 false

范例

示例 #1 jpeg2wbmp() 例子

<?php
// 目标 jpeg 的路径
$path './test.jpg';

// 获取图像尺寸
$image getimagesize($path);

// 转换图像
jpeg2wbmp($path'./test.wbmp'$image[1], $image[0], 5);
?>

注释

参见

  • png2wbmp() - 将 PNG 图像文件转换为 WBMP 图像文件
add a noteadd a note

User Contributed Notes 1 note

up
-7
barry dot schatz at gmail dot com
13 years ago
Actually this produces black and white images only, as does the jpeg2wbmp function.

官方地址:https://www.php.net/manual/en/function.jpeg2wbmp.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3