C# Class iTextSharp.text.ImgWMF

An ImgWMF is the representation of a windows metafile that has to be inserted into the document
Inheritance: Image
ファイルを表示 Open project: mapo80/iTextSharp-Monotouch Class Usage Examples

Public Methods

Method Description
ImgWMF ( Image image ) : System

Constructs an ImgWMF-object

ImgWMF ( Uri url ) : System

Constructs an ImgWMF-object, using an url.

ImgWMF ( byte img ) : System

Constructs an ImgWMF-object from memory.

ImgWMF ( string filename ) : System

Constructs an ImgWMF-object, using a filename.

ReadWMF ( PdfTemplate template ) : void

Reads the WMF into a template.

Private Methods

Method Description
ProcessParameters ( ) : void

This method checks if the image is a valid WMF and processes some parameters.

Method Details

ImgWMF() public method

Constructs an ImgWMF-object
public ImgWMF ( Image image ) : System
image Image a Image
return System

ImgWMF() public method

Constructs an ImgWMF-object, using an url.
public ImgWMF ( Uri url ) : System
url System.Uri the URL where the image can be found
return System

ImgWMF() public method

Constructs an ImgWMF-object from memory.
public ImgWMF ( byte img ) : System
img byte the memory image
return System

ImgWMF() public method

Constructs an ImgWMF-object, using a filename.
public ImgWMF ( string filename ) : System
filename string a string-representation of the file that contains the image.
return System

ReadWMF() public method

Reads the WMF into a template.
public ReadWMF ( PdfTemplate template ) : void
template iTextSharp.text.pdf.PdfTemplate the template to read to
return void