Returns true if this is a 3-slice 32-bit HSB stack.
()
| 376 | |
| 377 | /** Returns true if this is a 3-slice 32-bit HSB stack. */ |
| 378 | public boolean isHSB32() { |
| 379 | return getSize()==3 && bitDepth==32 && getSliceLabel(1)!=null && getSliceLabel(1).equals("Hue"); |
| 380 | } |
| 381 | |
| 382 | /** Returns true if this is a Lab stack. */ |
| 383 | public boolean isLab() { |
no test coverage detected