apparently something changed from php 5.5 to 5.6.
I used to call ImagePng($image, '');
apparently this doesn't work anymore in 5.6 as it returns: imagepng(): Filename cannot be empty
ImagePng($image, NULL);
seems to work fine though.
apparently something changed from php 5.5 to 5.6.
I used to call ImagePng($image, '');
apparently this doesn't work anymore in 5.6 as it returns: imagepng(): Filename cannot be empty
ImagePng($image, NULL);
seems to work fine though.