claviska / SimpleImage

A PHP class that makes working with images and GD as simple as possible.
MIT License
1.38k stars 382 forks source link

PHP E_WARNING when imagecreatefromstring() is used #338

Open dhm80 opened 5 months ago

dhm80 commented 5 months ago

In class SimpleImage the php internal function imagecreatefromstring() raises php warnings if the data is invalid:

E_WARNING: imagecreatefromstring(): Data is not in a recognized format

The function is used in two methods: fromDataUri() and fromFile()

Please change to @imagecreatefromstring() and throw an exception if result is false (see https://www.php.net/manual/en/function.imagecreatefromstring.php)

Thanks!