C# Class FluxJpeg.Core.IO.JPEGBinaryReader

Inheritance: System.IO.BinaryReader
Mostrar archivo Open project: prepare/HTML-Renderer Class Usage Examples

Public Properties

Property Type Description
eob_run int

Protected Properties

Property Type Description
_bitsLeft int

Public Methods

Method Description
GetNextMarker ( ) : byte

Seeks through the stream until a marker is found.

JPEGBinaryReader ( Stream input ) : System
ReadBits ( int n ) : int

Places n bits from the stream, where the most-significant bits from the first byte read end up as the most-significant of the returned n bits.

Protected Methods

Method Description
ReadJpegByte ( ) : byte

Method Details

GetNextMarker() public method

Seeks through the stream until a marker is found.
public GetNextMarker ( ) : byte
return byte

JPEGBinaryReader() public method

public JPEGBinaryReader ( Stream input ) : System
input Stream
return System

ReadBits() public method

Places n bits from the stream, where the most-significant bits from the first byte read end up as the most-significant of the returned n bits.
public ReadBits ( int n ) : int
n int Number of bits to return
return int

ReadJpegByte() protected method

protected ReadJpegByte ( ) : byte
return byte

Property Details

_bitsLeft protected_oe property

protected int _bitsLeft
return int

eob_run public_oe property

public int eob_run
return int