File: RGBImage.java

package info (click to toggle)
java-imaging-utilities 0.14.3-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,556 kB
  • sloc: java: 31,233; python: 71; xml: 31; makefile: 26; sh: 5
file content (21 lines) | stat: -rw-r--r-- 415 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * RGBImage
 *
 * Copyright (c) 2002, 2003 Marco Schmidt.
 * All rights reserved.
 */

package net.sourceforge.jiu.data;

import net.sourceforge.jiu.data.RGBIndex;

/**
 * An interface for RGB truecolor images.
 * This is an empty interface, useful for labeling an image type
 * as being an RGB image type. 
 * @author Marco Schmidt
 * @since 0.9.0
 */
public interface RGBImage extends PixelImage, RGBIndex
{
}