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