You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
303 B
24 lines
303 B
|
|
#
|
|
# Sample: Gamut clamping
|
|
#
|
|
|
|
from lcms import *
|
|
|
|
|
|
|
|
Lab = cmsCIELab(80, -200, 50)
|
|
print "Original", Lab
|
|
|
|
#
|
|
# Desaturates color to bring it into gamut.
|
|
# The gamut boundaries are specified as:
|
|
# -120 <= a <= 120
|
|
# -130 <= b <= 130
|
|
|
|
cmsClampLab(Lab, 120, -120, 130, -130)
|
|
|
|
print "Constrained", Lab
|
|
|
|
|