Page 1 of 1

Deprecated functions

Posted: 2013-02-15T03:51:56-07:00
by 168gr
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.

Re: Deprecated functions

Posted: 2013-02-15T04:50:10-07:00
by magick
Use DrawSetFillOpacity() instead.

Re: Deprecated functions

Posted: 2013-02-18T12:05:21-07:00
by 168gr
Thanks very much. :)