magickSetImageGreenPrimary method
MagickSetImageGreenPrimary() sets the image chromaticity green primary point.
- x: the green primary x-point.
- y: the green primary y-point.
- z: the green primary z-point.
Implementation
bool magickSetImageGreenPrimary(double x, double y, double z) =>
    _magickWandBindings.MagickSetImageGreenPrimary(
      _wandPtr,
      x,
      y,
      z,
    ).toBool();