libgimpcolor: add support for "CIE LCH(ab)" to gimp_babl_format_get_with_alpha().

It seems I had forgotten about this one!
This commit is contained in:
Jehan 2023-12-17 11:55:06 +09:00
parent e104196cb7
commit 69b7cbe111
1 changed files with 2 additions and 0 deletions

View File

@ -373,6 +373,8 @@ gimp_babl_format_get_with_alpha (const Babl *format)
new_model = "CIE XYZ alpha";
else if (g_strcmp0 (model, "CIE Yuv") == 0)
new_model = "CIE Yuv alpha";
else if (g_strcmp0 (model, "CIE LCH(ab)") == 0)
new_model = "CIE LCH(ab) alpha";
else if (g_strcmp0 (model, "CMYK") == 0)
new_model = "CMYKA";
else if (g_strcmp0 (model, "cmyk") == 0)