©
このドキュメントでは、 php中国語ネットマニュアル リリース
(PHP 4 >= 4.0.5, PHP 5, PHP 7)
jpeg2wbmp — 将 JPEG 图像文件转换为 WBMP 图像文件
$jpegname
, string $wbmpname
, int $dest_height
, int $dest_width
, int $threshold
)将 JPEG 图像文件转换为 WBMP 图像文件。
jpegname
JPEG 文件的路径。
wbmpname
目标 WBMP 文件的路径。
dest_height
目标图像高度。
dest_width
目标图像宽度。
threshold
阈值,在 0 和 8 之间(含)。
成功时返回 TRUE
, 或者在失败时返回 FALSE
。
Example #1 jpeg2wbmp() 例子
<?php
// 目标 jpeg 的路径
$path = './test.jpg' ;
// 获取图像尺寸
$image = getimagesize ( $path );
// 转换图像
jpeg2wbmp ( $path , './test.wbmp' , $image [ 1 ], $image [ 0 ], 5 );
?>
Note: WBMP 支持仅在 PHP 与 GD-1.8 或更高版本一起编译时可用。
Note: JPEG 支持仅在 PHP 与 GD-1.8 或更高版本一起编译时可用。
[#1] barry dot schatz at gmail dot com [2009-05-16 08:41:20]
Actually this produces black and white images only, as does the jpeg2wbmp function.