ImgCCITT
ImgCCITT Public class
Description
CCITT Image data that has to be inserted into the document
Diagram
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph iTextSharp.text
iTextSharp.text.ImgCCITT[[ImgCCITT]]
iTextSharp.text.Image[[Image]]
class iTextSharp.text.Image abstractStyle;
end
iTextSharp.text.Image --> iTextSharp.text.ImgCCITT
Details
Summary
CCITT Image data that has to be inserted into the document
Inheritance
Constructors
ImgCCITT [1/2]
public ImgCCITT(Image image)
Arguments
Type | Name | Description |
---|---|---|
Image | image |
ImgCCITT [2/2]
public ImgCCITT(int width, int height, bool reverseBits, int typeCCITT, int parameters, byte[] data)
Arguments
Type | Name | Description |
---|---|---|
int | width | the exact width of the image |
int | height | the exact height of the image |
bool | reverseBits | reverses the bits in data. Bit 0 is swapped with bit 7 and so on |
int | typeCCITT | the type of compression in data. It can be CCITTG4, CCITTG31D, CCITTG32D |
int | parameters | parameters associated with this stream. Possible values are CCITT_BLACKIS1, CCITT_ENCODEDBYTEALIGN, CCITT_ENDOFLINE and CCITT_ENDOFBLOCK or a combination of them |
byte``[] | data | the image data |
Summary
Creats an Image in CCITT mode.
Generated with ModularDoc