* Miscellany->Slide Show, in the display program, now cycles through the
image sequence.
* Recognize certain hex color values (e.g. #b9e1cc00) for the -fx argument.
+ * Recognize fxc: namespace. Use it if the FX expression is a constant.
2010-06-14 6.6.2-5 Anthony Thyssen <A.Thyssen@griffith...>
* Fix transprancy handling for Morphology Convolve
case 'F':
case 'f':
{
- if (LocaleNCompare("fx:",property,3) == 0)
+ if ((LocaleNCompare("fx:",property,3) == 0) ||
+ (LocaleNCompare("fxc:",property,4) == 0))
{
- fx_info=AcquireFxInfo(image,property+3);
+ fx_info=AcquireFxInfo(image,property+
+ (LocaleNCompare("fx:",property,3) == 0 ? 3 : 4));
status=FxEvaluateExpression(fx_info,&alpha,exception);
fx_info=DestroyFxInfo(fx_info);
if (status != MagickFalse)