1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
/*
* RGBIntegerImage
*
* Copyright (c) 2002 Marco Schmidt.
* All rights reserved.
*/
package net.sourceforge.jiu.data;
import net.sourceforge.jiu.data.IntegerImage;
import net.sourceforge.jiu.data.RGBImage;
/**
* An interface for RGB truecolor images that have integer samples.
* A combination of {@link net.sourceforge.jiu.data.IntegerImage} and
* {@link net.sourceforge.jiu.data.RGBImage}.
*
* @author Marco Schmidt
* @since 0.9.0
*/
public interface RGBIntegerImage extends IntegerImage, RGBImage
{
}
|