PdfDevice Class

PdfDevice class

Represents rendering to a pdf document.

public class PdfDevice : Device<PdfGraphicContext, PdfRenderingOptions>

Constructors

NameDescription
PdfDevice(ICreateStreamProvider)Initializes a new instance of the PdfDevice class.
PdfDevice(Stream)Initializes a new instance of the PdfDevice class.
PdfDevice(String)Initializes a new instance of the PdfDevice class.
PdfDevice(PdfRenderingOptions, ICreateStreamProvider)Initializes a new instance of the PdfDevice class by rendering options and stream provider.
PdfDevice(PdfRenderingOptions, Stream)Initializes a new instance of the PdfDevice class by rendering options and output stream.
PdfDevice(PdfRenderingOptions, String)Initializes a new instance of the PdfDevice class by rendering options and output file name.

Properties

NameDescription
getGraphicContext
getOptions

Methods

NameDescription
addRect(RectangleF)Appends a rectangle to the current path as a complete subpath.
beginDocument(Document)Begins rendering of the document.
beginElement(Element, RectangleF)Begins rendering of the element.
beginPage(SizeF)Begins rendering of the new page.
clip(FillMode)Modifies the current clipping path by intersecting it with the current path, using the FillMode rule to determine the region to fill. This method terminates current path.
closePath()Closes the current subpath by appending a straight line segment from the current point to the starting point of the subpath. If the current subpath is already closed, “ClosePath” does nothing. This operator terminates the current subpath. Appending another segment to the current path begins a new subpath, even if the new segment begins at the endpoint reached by the “ClosePath” method.
cubicBezierTo(PointF, PointF, PointF)Appends a cubic Bézier curve to the current path. The curve extends from the current point to the point pt2, using pt1 and pt2 as the Bézier control points. The new current point is pt3.
dispose()
drawImage(byte[], ImageType, RectangleF)Draws the specified image.
endDocument()Ends rendering of the document.
endElement(Element)Ends rendering of the element.
endPage()Ends rendering of the current page.
fill(FillMode)Fills the entire region enclosed by the current path. If the path consists of several disconnected subpaths, it fills the insides of all subpaths, considered together. This method terminates current path.
fillText(String, PointF)Fills the specified text String at the specified location.
flush()Flushes all data to output stream.
lineTo(PointF)Appends a straight line segment from the current point to the point (pt). The new current point is pt.
moveTo(PointF)Begins a new subpath by moving the current point to coordinates of the parameter pt, omitting any connecting line segment. If the previous path construction method in the current path was also “MoveTo”, the new “MoveTo” overrides it; no vestige of the previous “MoveTo” operation remains in the path.
restoreGraphicContext()Restores the entire graphics context to its former value by popping it from the stack.
saveGraphicContext()Pushes a copy of the entire graphics context onto the stack.
stroke()Strokes a line along the current path. The stroked line follows each straight or curved segment in the path, centered on the segment with sides parallel to it. Each of the path’s subpaths is treated separately. This method terminates current path.
strokeAndFill(FillMode)Strokes and fill current path. This method terminates current path.
strokeText(String, PointF)Strokes the specified text String at the specified location.

Other Members

NameDescription
class PdfGraphicContextHolds current graphics control parameters for the PdfDevice. These parameters define the global framework within which the graphics operators execute.

See Also