Click or drag to resize
Pdf Library for .NET

PdfImageElement Class

Represents an image that can be added to a pdf document.
Inheritance Hierarchy
SystemObject
  SelectPdfPdfPageElement
    SelectPdfPdfElement
      SelectPdfPdfImageElement

Namespace: SelectPdf
Assembly: Select.Pdf (in Select.Pdf.dll) Version: 26.3
Syntax
public class PdfImageElement : PdfElement

The PdfImageElement type exposes the following members.

Constructors
 NameDescription
Public methodPdfImageElement(Single, Single, Image) Creates an image object that can be added to a pdf document.
Public methodPdfImageElement(Single, Single, String) Creates an image object that can be added to a pdf document.
Public methodPdfImageElement(Single, Single, Single, Image) Creates an image object that can be added to a pdf document.
Public methodPdfImageElement(Single, Single, Single, String) Creates an image object that can be added to a pdf document.
Public methodPdfImageElement(Single, Single, Single, Single, Image) Creates an image object that can be added to a pdf document.
Public methodPdfImageElement(Single, Single, Single, Single, String) Creates an image object that can be added to a pdf document.
Top
Properties
 NameDescription
Public propertyActualText The exact text content represented by this element, used when the rendered content is not extractable as text (for example a text rendered as a graphic). Only used when TagType is set.
(Inherited from PdfPageElement)
Public propertyAlternateText Alternate text describing the element, used by assistive technology. Required for Figure elements in a tagged document. Only used when TagType is set.
(Inherited from PdfPageElement)
Public propertyArtifact Marks this element's content as a PDF artifact (decorative or non-semantic content such as background shapes, rules or repeated page furniture) in a tagged document. Artifact content is excluded from the logical structure tree. In a tagged document every element should either set TagType (real content) or set Artifact to true; this property takes precedence over TagType when both are set. Has no effect unless the owning Tagged is enabled.
(Inherited from PdfPageElement)
Public propertyBackColor Gets or sets the pdf element background color.
(Inherited from PdfElement)
Public propertyBlending Gets or sets the blending mode for transparent rendering of the pdf element.
(Inherited from PdfElement)
Public propertyColorSpace Gets or sets the color space for the pdf element rendering.
(Inherited from PdfElement)
Public propertyForeColor Gets or sets the pdf element foreground color.
(Inherited from PdfElement)
Public propertyGradient Gets or sets the gradient used to fill a shape.
(Inherited from PdfElement)
Public propertyHeight Gets or sets the image height in the destination pdf page.
Public propertyImage Gets the underlying system image object.
Public propertyLineStyle Gets or sets the line style for pdf elements rendering lines.
(Inherited from PdfElement)
Public propertyMultiFrameRendering A property that can be used to enable or disable multi-frame images rendering.
Public propertyRotated A flag to indicate if the current pdf element was rotated.
(Inherited from PdfElement)
Public propertyScaled A flag to indicate if the current pdf element was scaled.
(Inherited from PdfElement)
Public propertySkewed A flag to indicate if the current pdf element was skewed.
(Inherited from PdfElement)
Public propertyTagType The logical-structure (tagged PDF) type for this element. When set and the owning Tagged is enabled, the element's content is wrapped in a marked-content sequence and a corresponding structure element is added to the document's logical structure tree. When null (the default), the element is not tagged.
(Inherited from PdfPageElement)
Public propertyTranslated A flag to indicate if the current pdf element was translated.
(Inherited from PdfElement)
Public propertyTransparency Gets or sets the pdf element transparency.
(Inherited from PdfElement)
Public propertyTransparentRendering A flag indicating if the image transparency information is used when the image is rendered in the pdf document.
Public propertyWidth Gets or sets the image width in the destination pdf page.
Public propertyX Gets or sets the image position on the X axis.
Public propertyY Gets or sets the image position on the Y axis.
Top
Methods
 NameDescription
Public methodRotate Rotes the coordinate system before rendering the pdf element.
(Inherited from PdfElement)
Public methodScale Scales the coordinate system before rendering the pdf element.
(Inherited from PdfElement)
Public methodSkew Skews the x and y axis by an two different angles before rendering the pdf element.
(Inherited from PdfElement)
Public methodTranslate Translates the coordinate system before rendering the pdf element.
(Inherited from PdfElement)
Top
See Also