Jpeg
Jpeg Public class
Description
An Jpeg is the representation of a graphic element (JPEG) 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.Jpeg[[Jpeg]]
iTextSharp.text.Image[[Image]]
class iTextSharp.text.Image abstractStyle;
end
iTextSharp.text.Image --> iTextSharp.text.Jpeg
Details
Summary
An Jpeg is the representation of a graphic element (JPEG) that has to be inserted into the document
Inheritance
Constructors
Jpeg [1/4]
public Jpeg(Image image)
Arguments
Type | Name | Description |
---|---|---|
Image | image | a Image |
Summary
Construct a Jpeg-object, using a Image
Jpeg [2/4]
public Jpeg(Uri Uri)
Arguments
Type | Name | Description |
---|---|---|
Uri | Uri | the Uri where the image can be found |
Summary
Constructs a Jpeg-object, using an Uri.
Remarks
Deprecated, use Image.GetInstance(...) to create an Image
Jpeg [3/4]
public Jpeg(byte[] img)
Arguments
Type | Name | Description |
---|---|---|
byte``[] | img | the memory image |
Summary
Constructs a Jpeg-object from memory.
Jpeg [4/4]
public Jpeg(byte[] img, float width, float height)
Arguments
Type | Name | Description |
---|---|---|
byte``[] | img | the memory image. |
float | width | the width you want the image to have |
float | height | the height you want the image to have |
Summary
Constructs a Jpeg-object from memory.
Generated with ModularDoc