PHP Dokumentation: Function imagecreatefromxpm
12. Januar 2010 von werner
imagecreatefromxpm
(PHP 4 >= 4.0.1, PHP 5)
imagecreatefromxpm — Create a new image from file or URL
Beschreibung
imagecreatefromxpm() returns an image identifier representing the image obtained from the given filename.
Mit dieser Funktion können Sie eineURL als Dateinamen verwenden, falls Sie fopen wrappers ermöglicht haben. Mehr Details dazu, wie Sie denDateinamen angeben müssen finden Sie bei fopen(). EineListe der unterstützten URL Protokolle finden Sie unterList 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ältlichist.
Hinweis: Diese Funktion ist aufWindows-Plattformen nicht implementiert.