mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-26 01:46:18 +03:00
Combined conditions
This commit is contained in:
parent
4241836012
commit
bbd5a87e60
|
@ -213,35 +213,38 @@ cms_transform_dealloc(CmsTransformObject *self) {
|
|||
|
||||
static cmsUInt32Number
|
||||
findLCMStype(char *PILmode) {
|
||||
if (strcmp(PILmode, "RGB") == 0) {
|
||||
if (
|
||||
strcmp(PILmode, "RGB") == 0 ||
|
||||
strcmp(PILmode, "RGBA") == 0 ||
|
||||
strcmp(PILmode, "RGBX") == 0
|
||||
) {
|
||||
return TYPE_RGBA_8;
|
||||
} else if (strcmp(PILmode, "RGBA") == 0) {
|
||||
return TYPE_RGBA_8;
|
||||
} else if (strcmp(PILmode, "RGBX") == 0) {
|
||||
return TYPE_RGBA_8;
|
||||
} else if (strcmp(PILmode, "RGBA;16B") == 0) {
|
||||
}
|
||||
if (strcmp(PILmode, "RGBA;16B") == 0) {
|
||||
return TYPE_RGBA_16;
|
||||
} else if (strcmp(PILmode, "CMYK") == 0) {
|
||||
}
|
||||
if (strcmp(PILmode, "CMYK") == 0) {
|
||||
return TYPE_CMYK_8;
|
||||
} else if (strcmp(PILmode, "L") == 0) {
|
||||
return TYPE_GRAY_8;
|
||||
} else if (strcmp(PILmode, "L;16") == 0) {
|
||||
}
|
||||
if (strcmp(PILmode, "L;16") == 0) {
|
||||
return TYPE_GRAY_16;
|
||||
} else if (strcmp(PILmode, "L;16B") == 0) {
|
||||
}
|
||||
if (strcmp(PILmode, "L;16B") == 0) {
|
||||
return TYPE_GRAY_16_SE;
|
||||
} else if (strcmp(PILmode, "YCCA") == 0) {
|
||||
}
|
||||
if (
|
||||
strcmp(PILmode, "YCCA") == 0 ||
|
||||
strcmp(PILmode, "YCC") == 0
|
||||
) {
|
||||
return TYPE_YCbCr_8;
|
||||
} else if (strcmp(PILmode, "YCC") == 0) {
|
||||
return TYPE_YCbCr_8;
|
||||
} else if (strcmp(PILmode, "LAB") == 0) {
|
||||
}
|
||||
if (strcmp(PILmode, "LAB") == 0) {
|
||||
// LabX equivalent like ALab, but not reversed -- no #define in lcms2
|
||||
return (COLORSPACE_SH(PT_LabV2) | CHANNELS_SH(3) | BYTES_SH(1) | EXTRA_SH(1));
|
||||
}
|
||||
else {
|
||||
/* take a wild guess... */
|
||||
/* presume "L" by default */
|
||||
return TYPE_GRAY_8;
|
||||
}
|
||||
}
|
||||
|
||||
#define Cms_Min(a, b) ((a) < (b) ? (a) : (b))
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user