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