cfemocha Posted September 16, 2006 Share Posted September 16, 2006 Im trying to write a security image generator script for a registration form and I first wanted to test if GD library works.I learnt that GD library comes with php 4.3, but when I tried phpinfo() GD setting is nowhere to be found.Below are what I've tried so far:[list][*]Execute “php –m” and “GD” module is found[*]Uncomment the line extension=php_gd2.dll in php.ini [*]Ensure that php_gd2.dll is in c:\php\extension directory.[/list]I tried the script below[code]<?php $image = ImageCreate(200,150);?>[/code]and got this error msg: Fatal error: Call to undefined function: imagecreate() I really don't know what else to try, please help! Link to comment https://forums.phpfreaks.com/topic/21000-gd-library-problem-with-php-43/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.