"-version print version information",
(char *) NULL
},
+ *operators[]=
+ {
+ "-negate replace every pixel with its complementary color ",
+ (char *) NULL
+ },
*settings[]=
{
"-alpha option on, activate, off, deactivate, set, opaque, copy",
(void) printf("\nImage Settings:\n");
for (p=settings; *p != (char *) NULL; p++)
(void) printf(" %s\n",*p);
+ (void) printf("\nImage Operators:\n");
+ for (p=operators; *p != (char *) NULL; p++)
+ (void) printf(" %s\n",*p);
(void) printf("\nMiscellaneous Options:\n");
for (p=miscellaneous; *p != (char *) NULL; p++)
(void) printf(" %s\n",*p);
break;
ThrowIdentifyException(OptionError,"UnrecognizedOption",option)
}
+ case 'n':
+ {
+ if (LocaleCompare("negate",option+1) == 0)
+ break;
+ ThrowIdentifyException(OptionError,"UnrecognizedOption",option)
+ }
case 'p':
{
if (LocaleCompare("ping",option+1) == 0)