Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

com.imagero.uio.io
Class TargaRLEInputStream  view TargaRLEInputStream download TargaRLEInputStream.java

java.lang.Object
  extended byjava.io.InputStream
      extended byjava.io.FilterInputStream
          extended bycom.imagero.uio.io.RLEInputStream
              extended bycom.imagero.uio.io.TargaRLEInputStream
All Implemented Interfaces:
java.io.Closeable

public class TargaRLEInputStream
extends RLEInputStream


Nested Class Summary
 
Nested classes inherited from class com.imagero.uio.io.RLEInputStream
RLEInputStream.DeltaRecordException, RLEInputStream.EndOfBitmapException, RLEInputStream.EndOfLineException
 
Field Summary
(package private)  int numSamples
           
(package private)  int pixelSize
           
(package private)  boolean rawPacket
           
(package private)  byte[] value
           
(package private)  int vindex
           
 
Fields inherited from class com.imagero.uio.io.RLEInputStream
finished
 
Fields inherited from class java.io.FilterInputStream
in
 
Constructor Summary
TargaRLEInputStream(java.io.InputStream in, int pixelSize)
           
 
Method Summary
 int read()
          Calls the in.read() method
 
Methods inherited from class com.imagero.uio.io.RLEInputStream
available, close, mark, markSupported, read, read, reset
 
Methods inherited from class java.io.FilterInputStream
skip
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

numSamples

int numSamples

value

byte[] value

rawPacket

boolean rawPacket

pixelSize

int pixelSize

vindex

int vindex
Constructor Detail

TargaRLEInputStream

public TargaRLEInputStream(java.io.InputStream in,
                           int pixelSize)
Method Detail

read

public int read()
         throws java.io.IOException
Description copied from class: java.io.FilterInputStream
Calls the in.read() method

Specified by:
read in class RLEInputStream