Select a manufacturer and display device to view available user contributed colorimeter corrections, or use the search:
Or upload a new colorimeter correction:
See Wide Gamut Displays and Colorimeters on the Argyll CMS website for information about what colorimeter corrections are and for which purpose they are needed (also applies to LED and other non-CCFL backlit display technologies).
Please note that all colorimeter corrections have been contributed by various users, and their usefulness to your particular situation is up to you to evaluate. They may or may not improve the absolute accuracy of your colorimeter with your display.
GET https://colorimetercorrections.displaycal.net/?get=1
Parameters:
hash
(optional, should be the only additional parameter if given)type
(required if no hash parameter is given)ccmx
, ccss
or *
(all).created
(optional)YYYY-MM-DD HH-MM-SS
. A leading lesser-than ('<') or greater-than ('>') sign indicates that only entries older or newer than the specified date should be retrieved. *
is allowed as a wildcard, in which case you may leave out parts of the date (e.g. 2012-*
will match all entries created in 2012).manufacturer_id
(required if no hash, manufacturer or display parameter is given)manufacturer
(required if no hash, manufacturer_id or display parameter is given)*
(all).display
(required if no hash, manufacturer or manufacturer_id parameter is given)*
(all). Will do a semi-fuzzy match even if not using *
(e.g. '2690WUXi' will match 'LCD2690WUXi', but not 'LCD2690WUXi2').technology
(optional)*
(all). Will do a fuzzy match even if not using *
(e.g. 'CCFL Wide Gamut' will match 'LCD CCFL Wide Gamut PVA' and 'LCD CCFL Wide Gamut IPS').instrument
(required if type=ccmx
)Huey
, Spyder 3
, DTP94
, i1 Display
etc. or *
(all). Will do a semi-fuzzy match even if not using *
(e.g. 'i1 Display' will match 'Gretagmacbeth i1 Display', but not 'Gretagmacbeth i1 DisplayPro, ColorMunki Display').reference
(optional)i1 Pro
.xml=1
(optional)json=1
(optional)html=1
(optional)On success, will return HTTP status 200 OK
, with the response body containing the payload in form of the matching database entry/entries. An error message will be returned on failure with HTTP status 400
if there is a missing/invalid parameter, or 500 Internal Server Error
on database and other critical internal errors.
Multiple entries may be returned if not using the hash parameter.
Note: Instrument names in CCMX/CCSS files will (and should) contain vendor prefixes. These can be omitted for queries and will automatically be stripped for brevity in entries outside of actual CCMX/CCSS data.
View all entries for a specific manufacturer
?get=1&type=*&manufacturer=NEC&display=*&instrument=*
&json=1
&xml=1
&html=1
View CCSS for a specific display technology
?get=1&type=ccss&display=*&technology=LCD
&json=1
&xml=1
&html=1
View CCSS for a specific display device
?get=1&type=ccss&display=CM2112MET
&json=1
&xml=1
&html=1
View CCMX for a specific display device
?get=1&type=ccmx&display=1990SXi&instrument=*
&json=1
&xml=1
&html=1
View CCMX for a specific instrument
?get=1&type=ccmx&display=*&instrument=DTP94
&json=1
&xml=1
&html=1
View CCMX for a specific display device & instrument combination
?get=1&type=ccmx&display=2408WFP&instrument=DTP94
&json=1
&xml=1
&html=1
View a specific correction, identified by hash
?get=1&hash=c0e5ea14c261bf9ca858d17e23992174
&json=1
&xml=1
&html=1
POST https://colorimetercorrections.displaycal.net/?put=1
Parameters:
cgats
(required)application/x-www-form-urlencoded
or multipart/form-data
. The character encoding in both cases should be UTF-8.manufacturer_id
(required if MANUFACTURER_ID not present in CGATS data)manufacturer
(required if MANUFACTURER not present in CGATS data)reference
(optional, only applicable for CCSS)technology
(optional, only applicable if CGATS data does not contain a TECHNOLOGY string)DISPLAY_TYPE BACKLIGHT_TYPE PANEL_TYPE
, e.g. "LCD CCFL IPS". CCMX files normally don't include a TECHNOLOGY string, but it is recommended to add it either manually or with this parameter (see note and examples below).LCD
CRT
Plasma
Projector
CCFL
CCFL Wide Gamut
White LED
RGB LED
IPS
PVA
TN
On success, will return HTTP status 201 Created
, with the Location
header and the response body containing the URI of the database entry, identified by its hash. An error message will be returned on failure with HTTP status 400
if there is a missing/invalid parameter, 403
if the uploaded CGATS data did not originate from Argyll CMS, 409
if the correction already exists in the database, or 500 Internal Server Error
on database or other critical internal errors.
Note: Providing the manufacturer_id
, manufacturer
, reference
or technology
parameter will alter the uploaded CGATS data if the respective keyword and value is not yet present within. A new keyword and accompanying value will be inserted before the line containing the DISPLAY keyword in the CGATS data (see examples below).
Note: The DISPLAY string contained in uploaded CCMX/CCSS files should match the ASCII model name from EDID (text section 54 till 125 of typical type 252). If it is not available, the model ID (LSB decoded numerical representation of EDID address 10-11) should be used instead.
CCMX file uploaded with manufacturer_id=NEC
, manufacturer=NEC Corporation
and technology=LCD CCFL Wide Gamut IPS
CCMX DESCRIPTOR "i1 Display & NEC LCD2690WUXi(Digital)" INSTRUMENT "GretagMacbeth i1 Display" DISPLAY "LCD2690WUXi" REFERENCE "GretagMacbeth i1 Pro" ORIGINATOR "Argyll ccmx" CREATED "Sun Jan 22 20:26:53 2012" COLOR_REP "XYZ" ...
CCMX
DESCRIPTOR "i1 Display & NEC LCD2690WUXi(Digital)"
INSTRUMENT "GretagMacbeth i1 Display"
TECHNOLOGY "LCD CCFL Wide Gamut IPS"
MANUFACTURER_ID "NEC"
MANUFACTURER "NEC Corporation"
DISPLAY "LCD2690WUXi"
...
CCSS file uploaded with manufacturer_id=NEC
, manufacturer=NEC Corporation
and reference=GretagMacbeth i1 Pro
CCSS DESCRIPTOR "NEC LCD2690WUXi(Digital)" ORIGINATOR "Argyll ccxxmake" CREATED "Sun Jan 22 20:22:46 2012" DISPLAY "LCD2690WUXi" TECHNOLOGY "LCD CCFL Wide Gamut IPS" SPECTRAL_BANDS "118" SPECTRAL_START_NM "350.000000" ...
CCSS
DESCRIPTOR "NEC LCD2690WUXi(Digital)"
ORIGINATOR "Argyll ccxxmake"
CREATED "Sun Jan 22 20:22:46 2012"
REFERENCE "GretagMacbeth i1 Pro"
MANUFACTURER_ID "NEC"
MANUFACTURER "NEC Corporation"
DISPLAY "LCD2690WUXi"
...