From:             [EMAIL PROTECTED]
Operating system: Windows 2000
PHP version:      4.3.0
PHP Bug Type:     GD related
Bug description:  ImageSetTile is undefined

when trying to use the function "imagesettile", php returns the error "call
to undefined function: imagesettile()". i've tried using both php_gd.dll
and php_gd2.dll, with the same results. after a bit of poking in these
dlls, i've found that the function is indeed not declared.

i'm using the php 4.3.0 win32 binaries with the bundled gd. the following
script demonstrates the problem, although obviously imagesettile() doesn't
work whereever i put it.

<?
  $img = imagecreate( 200, 200 );
  $tile = imagecreate( 100, 100 );
  imagesettile( $img, $tile );
?>
-- 
Edit bug report at http://bugs.php.net/?id=22130&edit=1
-- 
Try a CVS snapshot:         http://bugs.php.net/fix.php?id=22130&r=trysnapshot
Fixed in CVS:               http://bugs.php.net/fix.php?id=22130&r=fixedcvs
Fixed in release:           http://bugs.php.net/fix.php?id=22130&r=alreadyfixed
Need backtrace:             http://bugs.php.net/fix.php?id=22130&r=needtrace
Try newer version:          http://bugs.php.net/fix.php?id=22130&r=oldversion
Not developer issue:        http://bugs.php.net/fix.php?id=22130&r=support
Expected behavior:          http://bugs.php.net/fix.php?id=22130&r=notwrong
Not enough info:            http://bugs.php.net/fix.php?id=22130&r=notenoughinfo
Submitted twice:            http://bugs.php.net/fix.php?id=22130&r=submittedtwice
register_globals:           http://bugs.php.net/fix.php?id=22130&r=globals
PHP 3 support discontinued: http://bugs.php.net/fix.php?id=22130&r=php3
Daylight Savings:           http://bugs.php.net/fix.php?id=22130&r=dst
IIS Stability:              http://bugs.php.net/fix.php?id=22130&r=isapi
Install GNU Sed:            http://bugs.php.net/fix.php?id=22130&r=gnused

Reply via email to