Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> PHP

วิธีสร้างรูปภาพใหม่จากไฟล์ WBMP หรือ URL โดยใช้ฟังก์ชัน imagecreatefromwbmp () ใน PHP


ใน PHP imagecreatefromwbmp() เป็นฟังก์ชัน inbuilt ที่ใช้สร้างรูปภาพใหม่จากไฟล์ WBMP หรือ URL imagecreatefromwbmp() ส่งคืนตัวระบุรูปภาพที่แสดงรูปภาพที่ได้รับจากชื่อไฟล์ที่กำหนด เราสามารถใช้ imagecreatefromwbmp() เมื่อใดก็ตามที่เราต้องการแก้ไขภาพหลังจากโหลดจากไฟล์ WBMP การใช้ฟังก์ชัน imagewbmp() สามารถแปลงรูปภาพเป็น WBMP ได้

ไวยากรณ์

resource imagecreatefromwbmp(string $filename)

พารามิเตอร์

imagecreatefromwbmp() รับเพียงพารามิเตอร์เดียว $filename . มีชื่อภาพ

คืนค่า

imagecreatefromwbmp() ส่งคืนตัวระบุทรัพยากรรูปภาพเมื่อสำเร็จ และแสดงข้อผิดพลาดเป็นเท็จ

ตัวอย่างที่ 1

<?php
   // Loading the WBMP image from the local drive folder
   $img = imagecreatefromwbmp'C:\xampp\htdocs\pic.wbmp');
   // View the loaded image in the browser
   imagewbmp($img);
   imagedestroy($img);
?>

ผลลัพธ์

Note − The above PHP code will load the content into the browser in the unsupported form text as browsers don't support WBMP.

ตัวอย่างที่ 2

<?php
   // Load a WBMP image from the local drive folder
   //We can convert the image to WBMP using the online converter
   //or using the imagewbmp() function
   $img = imagecreatefromwbmp('C:\xampp\htdocs\Images\img30.wbmp');
   
   // Save the GIF image into the given local drive folder path.
   imagejpeg($img,'C:\xampp\htdocs\pic.gif');
   imagedestroy($img);
?>

รูปภาพอินพุตต้นฉบับก่อนใช้ imagecreatefromwbmp()

วิธีสร้างรูปภาพใหม่จากไฟล์ WBMP หรือ URL โดยใช้ฟังก์ชัน imagecreatefromwbmp () ใน PHP

ส่งออกรูปภาพหลังจากใช้ imagecreatefromwbmp()

วิธีสร้างรูปภาพใหม่จากไฟล์ WBMP หรือ URL โดยใช้ฟังก์ชัน imagecreatefromwbmp () ใน PHP

หมายเหตุ − WBMP เป็นรูปแบบไฟล์บิตแมปไร้สาย เป็นรูปแบบกราฟิก WAP ที่ปรับให้เหมาะกับอุปกรณ์คอมพิวเตอร์พกพา รูปภาพในรูปแบบ WBMP จะถูกบันทึกในรูปแบบบิต นั่นคือ ทุกพิกเซลของรูปภาพจะถูกบันทึกเป็น 1 บิต ในการเปิดไฟล์ WBMP จำเป็นต้องใช้ซอฟต์แวร์รูปแบบไฟล์บิตแมปไร้สาย