I am trying to run Imagick within Laravel 5 and I keep getting this error every time I try and run my code. Imagick::paintTransparentImage
method is deprecated and it's use should be avoided. Before when I was running the code without Laravel this was a warning but the function would still run. Is there any way to suppress or turn off this warning? All other Imagick functions work great, and this one does if run outside the context of Laravel.
I ended up turning turning down the php error reporting strictness and the code runs fine. If anyone else gets this message do not freak out, it is depreciated but they have NOT provided an up to date alternative, opaquePaintImage is NOT the same thing.
as you mentioned, Imagick::paintTransparentImage method is deprecated.
Use Imagick::transparentPaintImage instead.