magickSetImageBluePrimary method
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();