PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

imagecreatetruecolor> <imagecreatefromxbm
Last updated: Fri, 10 Oct 2008

view this page in

imagecreatefromxpm

(PHP 4 >= 4.0.1, PHP 5)

imagecreatefromxpmCreate a new image from file or URL

Beschreibung

resource imagecreatefromxpm ( string $filename )

imagecreatefromxpm() returns an image identifier representing the image obtained from the given filename.

Tipp

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.

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.



add a note add a note User Contributed Notes
imagecreatefromxpm
There are no user contributed notes for this page.

imagecreatetruecolor> <imagecreatefromxbm
Last updated: Fri, 10 Oct 2008
 
 
show source | credits | sitemap | contact | advertising | mirror sites