Click or drag to resize

ImageArea Class

A image to be added to the header or footer of the rendered PDF document. The PdfConverter.PdfHeaderOptions.ImageArea property should be set with an object of this type.
Inheritance Hierarchy
SystemObject
  ExpertPdf.HtmlToPdfPdfElement
    ExpertPdf.HtmlToPdfImageArea

Namespace:  ExpertPdf.HtmlToPdf
Assembly:  ephtmltopdf (in ephtmltopdf.dll) Version: 17.0.0
Syntax
public class ImageArea : PdfElement

The ImageArea type exposes the following members.

Constructors
  NameDescription
Public methodImageArea(Single, Single, Single, Image)
Creates an ImageElement from the specified System.Drawing.Image object that will be rendered at the position (x,y) with the destWidth width and an auto detected height.
Public methodImageArea(Single, Single, Single, String)
Creates an ImageElement from the specified file that will be rendered at the position (x,y) with the destWidth width and an auto detected height.
Public methodImageArea(Single, Single, Single, Single, Image)
Creates an ImageElement from the specified System.Drawing.Image object that will be rendered at the position (x,y) with the (destWidth,destHeight) size.
Public methodImageArea(Single, Single, Single, Single, String)
Creates an ImageElement from the specified file that will be rendered at the position (x,y) with the (destWidth,destHeight) size.
Top
Properties
  NameDescription
Public propertyDestHeight
Gets or sets the image destination height
Public propertyDestWidth
Gets or sets the image destination width
Public propertyImageObj
Gets the underlying image object
Public propertyTransparency
Gets or sets element transparency. The transparency is expressed as a value between 0 and 100. 0 means completely transparent and 100 completely opaque.
Public propertyXLocation
Gets or sets the image location on X
Public propertyYLocation
Gets or sets the image location on Y
Top
See Also