Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

imagecreatefromgd2(3) [php man page]

IMAGECREATEFROMGD2(3)							 1						     IMAGECREATEFROMGD2(3)

imagecreatefromgd2 - Create a new image from GD2 file or URL

SYNOPSIS
resource imagecreatefromgd2 (string $filename) DESCRIPTION
Create a new image from GD2 file or URL. Tip A URL can be used as a filename with this function if the fopen wrappers have been enabled. See fopen(3) for more details on how to specify the filename. See the "Supported Protocols and Wrappers" for links to information about what abilities the various wrappers have, notes on their usage, and information on any predefined variables they may provide. PARAMETERS
o $filename - Path to the GD2 image. RETURN VALUES
Returns an image resource identifier on success, FALSE on errors. EXAMPLES
Example #1 imagecreatefromgd2(3) example <?php // Load the gd2 image $im = imagecreatefromgd2('./test.gd2'); // Apply an effect on the image, in this // case negate the image if PHP 5+ if(function_exists('imagefilter')) { imagefilter($im, IMG_FILTER_NEGATE); } // Save the image imagegd2($im, './test_updated.gd2'); imagedestroy($im); ?> NOTES
Note This function requires GD 2.0.1 or later (2.0.28 or later is recommended). PHP Documentation Group IMAGECREATEFROMGD2(3)

Check Out this Related Man Page

IMAGECREATEFROMXPM(3)							 1						     IMAGECREATEFROMXPM(3)

imagecreatefromxpm - Create a new image from file or URL

SYNOPSIS
resource imagecreatefromxpm (string $filename) DESCRIPTION
imagecreatefromxpm(3) returns an image identifier representing the image obtained from the given filename. Tip A URL can be used as a filename with this function if the fopen wrappers have been enabled. See fopen(3) for more details on how to specify the filename. See the "Supported Protocols and Wrappers" for links to information about what abilities the various wrappers have, notes on their usage, and information on any predefined variables they may provide. PARAMETERS
o $filename - Path to the XPM image. RETURN VALUES
Returns an image resource identifier on success, FALSE on errors. EXAMPLES
Example #1 Creating an image instance using imagecreatefromxpm(3) <?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($xpm, './example.jpg', 100); imagedestroy($xpm); ?> RETURN VALUES
Note This function is not implemented on Windows platforms. PHP Documentation Group IMAGECREATEFROMXPM(3)
Man Page

4 More Discussions You Might Find Interesting

1. Linux Benchmarks

Gd2 not compatible with Clientexec

Dear Frnds We are having WHM Cpanel in which many website are their , one of our customer want to install Clientexec software which requires GD2.0.28(compatible) library which is installed. The problem is libpng version which is incompatible with the GD library . Please kindly... (0 Replies)
Discussion started by: naik_mit
0 Replies

2. Linux

Gd2 problem

Dear Frnds We are having WHM Cpanel in which many website are their , one of our customer want to install Clientexec software which requires GD2.0.28(compatible) library which is installed. The problem is libpng version which is incompatible with the GD library . Please kindly help for the... (0 Replies)
Discussion started by: naik_mit
0 Replies

3. Web Development

Fatal Error: Call to undefined function imagefilter()

I am using PHP5 in ubuntu 9.10. First I installed PHP and GD as separate package. I tried doing manipulation with images using php image function. When I try using the function imagefilter(), it was not worked and got the solution that need to compile the PHP with the bundled version of GD. So... (0 Replies)
Discussion started by: skg
0 Replies

4. Shell Programming and Scripting

Get password protected URL folder using PHP fopen function

Hi everybody, Please some help over here, I`m pretty new in PHP. I have a cronrefresh php file within a website, I need this script get infornation from a URL of the site. Part of the script where $URL variable appears is: $fdURL = mysql_query("SELECT * FROM affiliSt_config WHERE name... (2 Replies)
Discussion started by: cgkmal
2 Replies