PHP में, imagecreatefromwbmp() एक इनबिल्ट फ़ंक्शन है जिसका उपयोग 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() using का उपयोग करने से पहले मूल इनपुट छवि
imagecreatefromwbmp() का उपयोग करने के बाद छवि आउटपुट करें
नोट - WBMP एक वायरलेस बिटमैप फ़ाइल स्वरूप है। यह मोबाइल कंप्यूटिंग उपकरणों के लिए अनुकूलित एक WAP ग्राफिक प्रारूप है। डब्ल्यूबीएमपी प्रारूप में चित्र बिट प्रारूप में सहेजे जाते हैं। यानी किसी इमेज का हर पिक्सल 1 बिट के तौर पर सेव होता है। WBMP फ़ाइल खोलने के लिए, एक वायरलेस बिटमैप फ़ाइल स्वरूप सॉफ़्टवेयर की आवश्यकता होती है।