Changeset 3195
- Timestamp:
- 09/26/07 10:52:52 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/loci/formats/in/BaseTiffReader.java
r3185 r3195 93 93 int[] colorMap = 94 94 (int[]) TiffTools.getIFDValue(ifds[0], TiffTools.COLOR_MAP); 95 95 if (colorMap == null) return null; 96 96 byte[][] table = new byte[3][colorMap.length / 3]; 97 97 int next = 0; … … 119 119 int[] colorMap = 120 120 (int[]) TiffTools.getIFDValue(ifds[0], TiffTools.COLOR_MAP); 121 if (colorMap == null) return null; 121 122 short[][] table = new short[3][colorMap.length / 3]; 122 123 int next = 0;
Note: See TracChangeset
for help on using the changeset viewer.