当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP png2wbmp()用法及代码示例


png2wbmp()函数是PHP中的内置函数,用于将PNG图像文件转换为WBMP图像文件。

用法:

bool png2wbmp( string $pngname, 
int $wbmpname, int $dest_height, 
int $dest_width, int $threshold )

参数:该函数接受上述和以下所述的五个参数:


  • $pngname:它指定PNG文件的路径。
  • $wbmpname:它指定目标WBMP文件的路径。
  • $dest_height:它指定目标图像的高度。
  • $dest_width:它指定目标图像的宽度。
  • $threshold:它指定阈值。

返回值:如果成功,则此函数返回TRUE;如果失败,则返回FALSE。

下面给出的程序说明了PHP中的png2wbmp()函数:程序1:

<?php 
// Path to the PNG image which 
// is to be converted 
$path = './geeksforgeeks.png'; 
  
// Get the image sizes which includes 
// the height and width 
$image = getimagesize($path); 
$height = $image[1]; 
$width = $image[0]; 
  
// Convert image the image and save as test.wbmp 
png2wbmp($path, './converted.wbmp', $height, $width, 5); 
echo 'PNG converted into WBMP successfully.'; 
?>

输出:

This will save the WBMP version of PNG in the same folder.

程序2:

<?php 
// Path to the PNG image which 
// is to be converted 
$path = './geeksforgeeks.jpg'; 
  
// Get the image sizes which includes 
// the height and width 
$image = getimagesize($path); 
$height = $image[1]; 
$width = $image[0]; 
  
// Convert image the image and save as test.wbmp 
png2wbmp($path, './converted.wbmp', $height, $width, 3); 
  
$im = imagecreatefromwbmp('./converted.wbmp'); 
  
header('Content-type:image/png'); 
imagepng($im); 
?>

输出:

参考: https://www.php.net/manual/en/function.png2wbmp.php



相关用法


注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | png2wbmp() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。