magickSetImageBluePrimary method

bool magickSetImageBluePrimary({
  1. required double x,
  2. required double y,
  3. required double z,
})

MagickSetImageBluePrimary() sets the image chromaticity blue primary point.

  • x: the blue primary x-point.
  • y: the blue primary y-point.
  • z: the blue primary z-point.

Implementation

bool magickSetImageBluePrimary({
  required double x,
  required double y,
  required double z,
}) =>
    _magickWandBindings.MagickSetImageBluePrimary(_wandPtr, x, y, z).toBool();