*/
(void) SyncImageSettings(mogrify_info,*image,exception);
(void) ParsePageGeometry(*image,argv[i+1],&geometry,exception);
- (void) GetOneVirtualPixelInfo(*image,TileVirtualPixelMethod,
- geometry.x,geometry.y,&target,exception);
- (void) QueryColorCompliance(argv[i+2],AllCompliance,
- &draw_info->fill,exception);
+ (void) QueryColorCompliance(argv[i+2],AllCompliance,&target,
+ exception);
(void) FloodfillPaintImage(*image,draw_info,&target,geometry.x,
geometry.y,*option == '-' ? MagickFalse : MagickTrue,exception);
break;
if (IsGeometry(arg1) == MagickFalse)
CLIWandExceptArgBreak(OptionError,"InvalidArgument",option,arg1);
(void) ParsePageGeometry(_image,arg1,&geometry,_exception);
- (void) GetOneVirtualPixelInfo(_image,TileVirtualPixelMethod,
- geometry.x,geometry.y,&target,exception);
- (void) QueryColorCompliance(arg2,AllCompliance,&_draw_info->fill,
- _exception);
+ (void) QueryColorCompliance(arg2,AllCompliance,&target,_exception);
(void) FloodfillPaintImage(_image,_draw_info,&target,geometry.x,
geometry.y,IsPlusOp,_exception);
break;