Currently on OSX Yosemite
I'm trying to do
imagecreatefrompng($originalFile);
But got:
Fatal error: Call to undefined function imagecreatefrompng()
So I did a little search and found that I need to install the GD Library, which I did,
$ brew install gd
And i Got:
Warning: gd-2.1.0_2 already installed
So I searched a little more, and uncommented in my php.ini and restarted Apache
extension=php_gd2.dll
Still not working.
So from here I'm lost, any pointers or suggestions?
EDIT:
I belive I have related problem as here.