Lines Matching refs:Z
14 options (-X|-Y), -Z and -z.
46 +#define CROP_ZONES 8 /* "-Z" */
64 -"Note: The (-X|-Y), -Z and -z options are mutually exclusive.\n"
65 +"Note: The (-X|-Y), -Z, -z and -S options are mutually exclusive.\n"
73 - /*-- Check for not allowed combinations (e.g. -X, -Y and -Z and -z are mutually exclusive) --*/
74 - char XY, Z, R;
75 + /*-- Check for not allowed combinations (e.g. -X, -Y and -Z, -z and -S are mutually exclusive)…
76 + char XY, Z, R, S;
78 Z = (crop_data->crop_mode & CROP_ZONES);
80 - if ((XY && Z) || (XY && R) || (Z && R)) {
81 - TIFFError("tiffcrop input error", "The crop options(-X|-Y), -Z and -z are mutually exclusi…
83 + if ((XY && Z) || (XY && R) || (XY && S) || (Z && R) || (Z && S) || (R && S)) {
84 + TIFFError("tiffcrop input error", "The crop options(-X|-Y), -Z, -z and -S are mutually exc…