Returns true if this is a 3-slice HSB stack.
()
| 371 | |
| 372 | /** Returns true if this is a 3-slice HSB stack. */ |
| 373 | public boolean isHSB() { |
| 374 | return getSize()==3 && bitDepth==8 && getSliceLabel(1)!=null && getSliceLabel(1).equals("Hue"); |
| 375 | } |
| 376 | |
| 377 | /** Returns true if this is a 3-slice 32-bit HSB stack. */ |
| 378 | public boolean isHSB32() { |
no test coverage detected