PHP Function List
imagecreate( doesn't exist. Closest matches:
- imagecreate
- imap_create
- imagerotate
- imagecreatefromgd
- imagecolorat
- imagecolorexact
- imagecreatefrompng
- imagecreatefromgif
- imagecreatefromxpm
- imagecreatefromxbm
- imagecreatefromgd2
- imagecolorset
- imagecreatefromjpeg
- imagecreatefromwbmp
- date_create
- imagerectangle
- imagecreatetruecolor
- imagecolordeallocate
- imagecolorallocate
- imagesettile
Site Search Results
-
if you want to create an image with a specific DPI, you can't control this directly from GD. If you have access to gd.h (rarely on a shared hosting) you can modify GD ...
-
ImageCreate is used to create an image resource with a 256 color palette, sometimes called indexed color. In previous versions, ImageCreate worked OK for manipulating JPEG images.
-
The work around i found was posted under imagecolorallocate() and prescribes that you first use imagecreate(), allocate colors, and then copy the jpeg into this image.
-
Note: The first call to imagecolorallocate() fills the background color in palette-based images - images created using imagecreate().
-
$im = imagecreate( $imgw, $imgh ); // white background and blue text $bg = imagecolorallocate($im, 255, 255, 255); $textcolor = imagecolorallocate($im, 0, 0, 0);
-
imagecreate; imagecreatefromgd2; imagecreatefromgd2part; imagecreatefromgd; imagecreatefromgif; imagecreatefromjpeg; imagecreatefrompng; imagecreatefromstring
-
$img = imagecreate ($width, $height); // Grey background $bg = imagecolorallocate ($img, 205, 255, 255); // White font color $color = imagecolorallocate ($img, 0, 0, ...
-
$iOut = imagecreate ($maxW, $maxH) ; $pos = 0; foreach ($imgBuf as $img) { if ($under) imagecopy ($iOut, $img, 0, $pos, 0, 0, imagesx ($img), imagesy ($img));
-
$im = @imagecreate($W, $H) or die("Cannot Initialize new GD image stream"); $background_color = imagecolorallocate($im, $bgcolor[0], $bgcolor[1], $bgcolor ...
-
Oh, and use imagecreatetruecolor instead of imagecreate if you have it available. I agree that imageellipse is easier, though. Actually, I generate rounded corners with drop ...

Other forms of search
To search the string "imagecreate(" using other options, try searching:
- Only the documentation
- Only this mirror
- The entire php.net domain
- pear.php.net
- pecl.php.net
- The Bug DB
- php-general mailing list
- Internals mailing list
- Documentation mailing list
For a quick overview over all documented PHP functions, click here.
