001 /* 002 * RGB24Image 003 * 004 * Copyright (c) 2000, 2001, 2002, 2003 Marco Schmidt. 005 * All rights reserved. 006 */ 007 008 package net.sourceforge.jiu.data; 009 010 import net.sourceforge.jiu.data.ByteChannelImage; 011 import net.sourceforge.jiu.data.RGBIntegerImage; 012 013 /** 014 * An empty interface for RGB truecolor images with integer samples 015 * that are each eight bits large (thus, 24 bits per pixel). 016 * @author Marco Schmidt 017 */ 018 public interface RGB24Image extends ByteChannelImage, RGBIntegerImage 019 { 020 }