Revision 27361 trunk/libraries/libRaster/src/org/gvsig/raster/grid/filter/bands/RGBToCMYKByteFilter.java

View differences:

RGBToCMYKByteFilter.java
31 31
	 * (non-Javadoc)
32 32
	 * @see org.gvsig.raster.grid.filter.bands.ColorTableFilter#process(int, int)
33 33
	 */
34
	public void process(int col, int line) {
34
	public void process(int col, int line) throws InterruptedException {
35 35
		byte[] value = new byte[4];
36 36
		raster.getElemByte(line, col, value);
37 37
		if(value[0] == 0 && value[1] == 0 && value[2] == 2)

Also available in: Unified diff