iText 5

ImgRaw

ImgRaw Public class

Description

Raw 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.ImgRaw[[ImgRaw]] iTextSharp.text.Image[[Image]] class iTextSharp.text.Image abstractStyle; end iTextSharp.text.Image --> iTextSharp.text.ImgRaw

Details

Summary

Raw Image data that has to be inserted into the document

Inheritance

Constructors

ImgRaw [1/2]

Source code

public ImgRaw(Image image)

Arguments

Type

Name

Description

Image

image

ImgRaw [2/2]

Source code

public ImgRaw(int width, int height, int components, int bpc, byte[] data)

Arguments

Type

Name

Description

int

width

the exact width of the image

int

height

the exact height of the image

int

components

1,3 or 4 for GrayScale, RGB and CMYK

int

bpc

bits per component. Must be 1,2,4 or 8

byte``[]

data

data the image data

Summary

Creats an Image in raw mode.

Generated with ModularDoc