Lines Matching full:wands
187 % ClonePixelWands() makes an exact copy of the specified wands.
191 % PixelWand **ClonePixelWands(const PixelWand **wands,
196 % o wands: the magick wands.
198 % o number_wands: the number of wands.
201 WandExport PixelWand **ClonePixelWands(const PixelWand **wands,
216 clone_wands[i]=ClonePixelWand(wands[i]);
269 % pixel wands.
280 % o number_wands: the number of wands.
443 % NewPixelWands() returns an array of pixel wands.
451 % o number_wands: the number of wands.
460 **wands;
462 wands=(PixelWand **) AcquireQuantumMemory((size_t) number_wands,
463 sizeof(*wands));
464 if (wands == (PixelWand **) NULL)
468 wands[i]=NewPixelWand();
469 return(wands);