Is there comprehensive documentation of deprecated functions someplace, along with information concerning the new/preferred way to accomplish a task without them?
I have some functioning code that does exactly what I want it to, but when compiling it produces a warning:
warning: ‘DrawSetFillAlpha’ is deprecated (declared at ./include/wand/deprecate.h:167)
My search through the docs found this page:
http://www.imagemagick.org/api/deprecate.php
but it doesn't address the above function.
It's listed here:
http://www.imagemagick.org/api/magick-deprecate.php
but the entry for DrawSetFillAlpha doesn't say anything about how it has been superseded.
Thanks.
Deprecated functions
Re: Deprecated functions
Use DrawSetFillOpacity() instead.
Re: Deprecated functions
Thanks very much.