C# Class iTextSharp.text.ImgCCITT

CCITT Image data that has to be inserted into the document
Inheritance: Image, IElement
ファイルを表示 Open project: mapo80/iTextSharp-Monotouch Class Usage Examples

Public Methods

Method Description
ImgCCITT ( Image image ) : System
ImgCCITT ( int width, int height, bool reverseBits, int typeCCITT, int parameters, byte data ) : System

Creats an Image in CCITT mode.

Method Details

ImgCCITT() public method

public ImgCCITT ( Image image ) : System
image Image
return System

ImgCCITT() public method

Creats an Image in CCITT mode.
public ImgCCITT ( int width, int height, bool reverseBits, int typeCCITT, int parameters, byte data ) : System
width int the exact width of the image
height int the exact height of the image
reverseBits bool /// reverses the bits in data. /// Bit 0 is swapped with bit 7 and so on ///
typeCCITT int /// the type of compression in data. It can be /// CCITTG4, CCITTG31D, CCITTG32D ///
parameters int /// parameters associated with this stream. Possible values are /// CCITT_BLACKIS1, CCITT_ENCODEDBYTEALIGN, CCITT_ENDOFLINE and CCITT_ENDOFBLOCK or a /// combination of them ///
data byte the image data
return System