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


PHP image2wbmp()用法及代码示例


image2wbmp()函数是PHP中的内置函数,用于向浏览器或文件显示图像。此函数的主要用途是在浏览器中查看图像并将任何其他图像类型转换为WBMP。

用法:

bool image2wbmp( resource $image, int $filename, int $foreground)

参数:此函数接受上述和以下所述的三个参数:


  • $image:它指定要处理的图像资源。
  • $filename (Optional):它指定将文件保存到的路径。
  • $foreground (Optional):它指定图像的前景。

返回值:如果成功,此函数将返回TRUE,否则将返回FALSE。

以下示例说明了PHP中的image2wbmp()函数:示例1:在此示例中,我们将在浏览器中下载图像。

<?php 
// Load an wbmp image from local folder 
// Image can be converted into wbmp using 
// online convertors or imagewbmp() 
$im = imagecreatefromwbmp('geeksforgeeks.wbmp'); 
  
// Download the image 
header('Content-Type:image/vnd.wap.wbmp'); 
image2wbmp($im); 
imagedestroy($im); 
?>

输出:

This will download your image as download, 
further you can rename this file to anything like 
geeksforgeeks.wbmp and use it.

范例2:在此示例中,我们将PNG转换为WBMP。

<?php 
// Load an image from PNG URL 
$im = imagecreatefrompng( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// Convert the image into WBMP using image2wbmp() function 
image2wbmp($im, 'converted.wbmp'); 
echo 'Image coverted to WBMP successfully.'; 
imagedestroy($im); 
?>

输出:

This will save the WBMP version of image 
in the same folder where your PHP script is.

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



相关用法


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