(PHP 4 >= 4.0.1, PHP 5)
imagecreatefromxbm — Create a new image from file or URL
imagecreatefromxbm() returns an image identifier representing the image obtained from the given filename.
Mit dieser Funktion können Sie eine URL als Dateinamen verwenden, falls Sie fopen wrappers ermöglicht haben. Mehr Details dazu, wie Sie den Dateinamen angeben müssen finden Sie bei fopen(). Eine Liste der unterstützten URL Protokolle finden Sie unter List of Supported Protocols/Wrappers.
Path to the XBM image.
Returns an image resource identifier on success, FALSE on errors.
Beispiel #1 Convert an XBM image to a png image using imagecreatefromxbm()
<?php
// Load the xbm file
$xbm = imagecreatefromxbm('./example.xbm');
// Convert it to a png file
imagepng($xbm, './example.png');
imagedestroy($xbm);
?>
PHP-Versionen kleiner 4.3.0 für Windows, erlauben den Zugriff auf Remote-Dateien mit dieser Funktion nicht, selbst wenn allow_url_fopen aktiviert ist.