From:             neothermic at neothermic dot com
Operating system: N/A
PHP version:      Irrelevant
PHP Bug Type:     Documentation problem
Bug description:  imagecolorallocate example uses incorrect snytax for 
imagecreate

Description:
------------
In a related bug to #36447, imagecolorallocate has this example:

<?php

$im = imagecreate('example.jpg', 100, 100);

// sets background to red
$background = imagecolorallocate($im, 255, 0, 0);

// sets some colors
$white = imagecolorallocate($im, 255, 255, 255);
$black = imagecolorallocate($im, 0, 0, 0);

// hexadecimal way
$white = imagecolorallocate($im, 0xFF, 0xFF, 0xFF);
$black = imagecolorallocate($im, 0x00, 0x00, 0x00);

?> 

However, imagecreate has this syntax:
resource imagecreate ( int x_size, int y_size )

Ergo the first call in the example will issue an error. 

Suggested fix is as simple as ever:

$im = imagecreate(100, 100);

NeoThermic


-- 
Edit bug report at http://bugs.php.net/?id=39169&edit=1
-- 
Try a CVS snapshot (PHP 4.4): 
http://bugs.php.net/fix.php?id=39169&r=trysnapshot44
Try a CVS snapshot (PHP 5.2): 
http://bugs.php.net/fix.php?id=39169&r=trysnapshot52
Try a CVS snapshot (PHP 6.0): 
http://bugs.php.net/fix.php?id=39169&r=trysnapshot60
Fixed in CVS:                 http://bugs.php.net/fix.php?id=39169&r=fixedcvs
Fixed in release:             
http://bugs.php.net/fix.php?id=39169&r=alreadyfixed
Need backtrace:               http://bugs.php.net/fix.php?id=39169&r=needtrace
Need Reproduce Script:        http://bugs.php.net/fix.php?id=39169&r=needscript
Try newer version:            http://bugs.php.net/fix.php?id=39169&r=oldversion
Not developer issue:          http://bugs.php.net/fix.php?id=39169&r=support
Expected behavior:            http://bugs.php.net/fix.php?id=39169&r=notwrong
Not enough info:              
http://bugs.php.net/fix.php?id=39169&r=notenoughinfo
Submitted twice:              
http://bugs.php.net/fix.php?id=39169&r=submittedtwice
register_globals:             http://bugs.php.net/fix.php?id=39169&r=globals
PHP 3 support discontinued:   http://bugs.php.net/fix.php?id=39169&r=php3
Daylight Savings:             http://bugs.php.net/fix.php?id=39169&r=dst
IIS Stability:                http://bugs.php.net/fix.php?id=39169&r=isapi
Install GNU Sed:              http://bugs.php.net/fix.php?id=39169&r=gnused
Floating point limitations:   http://bugs.php.net/fix.php?id=39169&r=float
No Zend Extensions:           http://bugs.php.net/fix.php?id=39169&r=nozend
MySQL Configuration Error:    http://bugs.php.net/fix.php?id=39169&r=mysqlcfg

Reply via email to