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]
Source code
public Jpeg(Image image)
Arguments
|
Type |
Name |
Description |
|---|---|---|
|
|
image |
a Image |
Summary
Construct a Jpeg-object, using a Image
Jpeg [2/4]
Source code
public Jpeg(Uri Uri)
Arguments
|
Type |
Name |
Description |
|---|---|---|
|
|
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]
Source code
public Jpeg(byte[] img)
Arguments
|
Type |
Name |
Description |
|---|---|---|
|
|
img |
the memory image |
Summary
Constructs a Jpeg-object from memory.
Jpeg [4/4]
Source code
public Jpeg(byte[] img, float width, float height)
Arguments
|
Type |
Name |
Description |
|---|---|---|
|
|
img |
the memory image. |
|
|
width |
the width you want the image to have |
|
|
height |
the height you want the image to have |
Summary
Constructs a Jpeg-object from memory.
Generated with ModularDoc