Function.imagecreatefromxpm
Aus PHP-Wiki
imagecreatefromxpm — Create a new image from file or URL
Inhaltsverzeichnis |
Beschreibung
resource imagecreatefromxpm ( string $filename )
imagecreatefromxpm() returns an image identifier
representing the image obtained from the given filename.
TippMit 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.
Parameter-Liste
- filename
- Path to the XPM image.
Rückgabewerte
Returns an image resource identifier on success, FALSE on errors.
Beispiele
Beispiel #1 Creating an image instance using imagecreatefromxpm()
<?php // Check for XPM support if(!(imagetypes() & IMG_XPM)) { die('Support for xpm was not found!'); } // Create the image instance $xpm = imagecreatefromxpm('./example.xpm'); // Do image operations here // PHP has no support for writing xpm images // so in this case we save the image as a // jpeg file with 100% quality imagejpeg($im, './example.jpg', 100); imagedestroy($im); ?>
Rückgabewerte
Hinweis: Diese Funktion steht nur zur Verfügung, wenn PHP mit der GD Bibliothek übersetzt wurde, die mit PHP zusammen erhältlich ist. Hinweis: Diese Funktion ist auf Windows-Plattformen nicht implementiert.