ltiCMYKColor.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033 #ifndef LTI_CMYK_COLOR_H
00034 #define LTI_CMYK_COLOR_H
00035
00036 namespace lti {
00037
00038
00039
00040
00041
00042 class cmykColor {
00043 public:
00044
00045
00046
00047
00048
00049 cmykColor() { c=m=y=k=0; };
00050
00051
00052
00053
00054
00055 cmykColor(float nc, float nm, float ny, float nk) {
00056 c=nc; m=nm; y=ny; k=nk;
00057 }
00058
00059
00060
00061
00062 inline float getCyan() const {
00063 return c;
00064 }
00065
00066
00067
00068
00069 inline float getMagenta() const {
00070 return m;
00071 }
00072
00073
00074
00075
00076 inline float getYellow() const {
00077 return y;
00078 }
00079
00080
00081
00082
00083 inline float getBlack() const {
00084 return k;
00085 }
00086
00087
00088
00089
00090 void setCyan(const float& cyan) {
00091 c=cyan;
00092 }
00093
00094
00095
00096
00097 void setMagenta(const float& magenta) {
00098 m=magenta;
00099 }
00100
00101
00102
00103
00104 void setYellow(const float& yellow) {
00105 y=yellow;
00106 }
00107
00108
00109
00110
00111 void setBlack(const float& black) {
00112 k=black;
00113 }
00114
00115
00116
00117
00118 inline cmykColor& copy(const cmykColor& other) {
00119 c=other.c;
00120 m=other.m;
00121 y=other.y;
00122 k=other.k;
00123 return (*this);
00124 };
00125
00126
00127
00128
00129 inline cmykColor& operator=(const cmykColor& other) {
00130 return(copy(other));
00131 };
00132
00133
00134
00135
00136 inline bool isEqual(const cmykColor& other) const {
00137 return (c == other.getCyan() && m == other.getMagenta()
00138 && y == other.getYellow() && k == other.getBlack());
00139 }
00140
00141
00142
00143
00144 inline bool operator==(const cmykColor& other) const {
00145 return (isEqual(other));
00146 };
00147
00148
00149
00150
00151 inline bool operator!=(const cmykColor& other) const {
00152 return (!isEqual(other));
00153 };
00154
00155
00156
00157
00158
00159
00160 inline bool operator<(const cmykColor& other) const {
00161 return (k < other.getBlack() || c < other.getCyan()
00162 || m < other.getMagenta() || y < other.getYellow());
00163 }
00164
00165
00166
00167
00168
00169
00170 inline bool operator>(const cmykColor& other) const {
00171 return (k > other.getBlack() || c > other.getCyan()
00172 || m > other.getMagenta() || y > other.getYellow());
00173 }
00174
00175
00176 private:
00177 float c,m,y,k;
00178
00179 };
00180
00181
00182
00183
00184
00185
00186
00187
00188 inline bool read(ioHandler& handler,cmykColor& p,const bool complete=true) {
00189 float tmp;
00190 bool b = true;
00191
00192
00193 handler.readBegin();
00194
00195 b = b && handler.read(tmp);
00196 p.setCyan(tmp);
00197
00198 b = b && handler.readDataSeparator();
00199
00200 b = b && handler.read(tmp);
00201 p.setMagenta(tmp);
00202
00203 b = b && handler.readDataSeparator();
00204
00205 b = b && handler.read(tmp);
00206 p.setYellow(tmp);
00207
00208 b = b && handler.readDataSeparator();
00209
00210 b = b && handler.read(tmp);
00211 p.setBlack(tmp);
00212
00213 b = b && handler.readEnd();
00214
00215 return b;
00216 };
00217
00218
00219
00220
00221
00222
00223
00224
00225 inline bool write(ioHandler& handler,const cmykColor& p,
00226 const bool complete=true) {
00227 bool b = true;
00228
00229
00230 b = b && handler.writeBegin();
00231
00232 b = b && handler.write(p.getCyan());
00233 b = b && handler.writeDataSeparator();
00234 b = b && handler.write(p.getMagenta());
00235 b = b && handler.writeDataSeparator();
00236 b = b && handler.write(p.getYellow());
00237 b = b && handler.writeDataSeparator();
00238 b = b && handler.write(p.getBlack());
00239 b = b && handler.writeEnd();
00240
00241 return b;
00242 };
00243
00244 }
00245
00246 #endif