magickSetImageWhitePoint method

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

MagickSetImageWhitePoint() sets the image chromaticity white point.

  • x: the white x-point.
  • y: the white y-point.
  • z: the white z-point.

Implementation

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