C# 클래스 BitMiracle.LibTiff.Classic.Internal.DumpModeCodec

상속: TiffCodec
파일 보기 프로젝트 열기: Core-Techs/TiffLibrary

공개 메소드들

메소드 설명
DecodeRow ( byte buffer, int offset, int count, short plane ) : bool

Decodes one row of image data.

DecodeStrip ( byte buffer, int offset, int count, short plane ) : bool

Decodes one strip of image data.

DecodeTile ( byte buffer, int offset, int count, short plane ) : bool

Decodes one tile of image data.

DumpModeCodec ( Tiff tif, Compression scheme, string name ) : System
EncodeRow ( byte buffer, int offset, int count, short plane ) : bool

Encodes one row of image data.

EncodeStrip ( byte buffer, int offset, int count, short plane ) : bool

Encodes one strip of image data.

EncodeTile ( byte buffer, int offset, int count, short plane ) : bool

Encodes one tile of image data.

Init ( ) : bool
Seek ( int row ) : bool

Seeks the specified row in the strip being processed.

비공개 메소드들

메소드 설명
DumpModeDecode ( byte buffer, int offset, int count, short plane ) : bool

Decode a hunk of pixels.

DumpModeEncode ( byte buffer, int offset, int count, short plane ) : bool

Encode a hunk of pixels.

메소드 상세

DecodeRow() 공개 메소드

Decodes one row of image data.
public DecodeRow ( byte buffer, int offset, int count, short plane ) : bool
buffer byte The buffer to place decoded image data to.
offset int The zero-based byte offset in at /// which to begin storing decoded bytes.
count int The number of decoded bytes that should be placed /// to
plane short The zero-based sample plane index.
리턴 bool

DecodeStrip() 공개 메소드

Decodes one strip of image data.
public DecodeStrip ( byte buffer, int offset, int count, short plane ) : bool
buffer byte The buffer to place decoded image data to.
offset int The zero-based byte offset in at /// which to begin storing decoded bytes.
count int The number of decoded bytes that should be placed /// to
plane short The zero-based sample plane index.
리턴 bool

DecodeTile() 공개 메소드

Decodes one tile of image data.
public DecodeTile ( byte buffer, int offset, int count, short plane ) : bool
buffer byte The buffer to place decoded image data to.
offset int The zero-based byte offset in at /// which to begin storing decoded bytes.
count int The number of decoded bytes that should be placed /// to
plane short The zero-based sample plane index.
리턴 bool

DumpModeCodec() 공개 메소드

public DumpModeCodec ( Tiff tif, Compression scheme, string name ) : System
tif Tiff
scheme Compression
name string
리턴 System

EncodeRow() 공개 메소드

Encodes one row of image data.
public EncodeRow ( byte buffer, int offset, int count, short plane ) : bool
buffer byte The buffer with image data to be encoded.
offset int The zero-based byte offset in at /// which to begin read image data.
count int The maximum number of encoded bytes that can be placed /// to
plane short The zero-based sample plane index.
리턴 bool

EncodeStrip() 공개 메소드

Encodes one strip of image data.
public EncodeStrip ( byte buffer, int offset, int count, short plane ) : bool
buffer byte The buffer with image data to be encoded.
offset int The zero-based byte offset in at /// which to begin read image data.
count int The maximum number of encoded bytes that can be placed /// to
plane short The zero-based sample plane index.
리턴 bool

EncodeTile() 공개 메소드

Encodes one tile of image data.
public EncodeTile ( byte buffer, int offset, int count, short plane ) : bool
buffer byte The buffer with image data to be encoded.
offset int The zero-based byte offset in at /// which to begin read image data.
count int The maximum number of encoded bytes that can be placed /// to
plane short The zero-based sample plane index.
리턴 bool

Init() 공개 메소드

public Init ( ) : bool
리턴 bool

Seek() 공개 메소드

Seeks the specified row in the strip being processed.
public Seek ( int row ) : bool
row int The row to seek.
리턴 bool