Class ImgRaw
- Namespace
- iTextSharp.text
- Assembly
- iTextSharp.LGPLv2.Core.dll
Raw Image data that has to be inserted into the document
public class ImgRaw : Image, IElement
- Inheritance
-
ImgRaw
- Implements
- Inherited Members
Constructors
ImgRaw(int, int, int, int, byte[])
Creats an Image in raw mode.
public ImgRaw(int width, int height, int components, int bpc, byte[] data)
Parameters
width
intthe exact width of the image
height
intthe exact height of the image
components
int1,3 or 4 for GrayScale, RGB and CMYK
bpc
intbits per component. Must be 1,2,4 or 8
data
byte[]data the image data
ImgRaw(Image)
public ImgRaw(Image image)
Parameters
image
Image