When using the Imagine library with Xampp PHP 8.0.1, I'm getting an error with the open()
function in the file Imagine/Gd/Imagine.php
. Specifically, line #93 of code:
$resource = @imagecreatefromstring($data);
The returned value of $resource
is {GdImage}[0]
and is not a resource which then throws an error.
If I simply go back to Xampp PHP 7.4.13, everything is fine.
Any thoughts would be appreciated.