jpeg2wbmp
(PHP 4 >= 4.0.5, PHP 5, PHP 7)
jpeg2wbmp — JPEG画像をWBMP画像に変換する
警告
この関数は PHP 7.2.0 で 非推奨 になり、PHP 8.0.0 で 削除 されました。この関数に頼らないことを強く推奨します。
説明
jpeg2wbmp(
string
string
int
int
int
): bool
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までの値を指定します。
例
例1 jpeg2wbmp() の例
<?php
// Path to the target jpeg
$path = './test.jpg';
// Get the image sizes
$image = getimagesize($path);
// Convert image
jpeg2wbmp($path, './test.wbmp', $image[1], $image[0], 5);
?>
参考
- png2wbmp() - PNG画像をWBMP画像に変換する
+add a note
User Contributed Notes
There are no user contributed notes for this page.