 | PdfPageRender Method (PdfBitmap, Point, Size, PageRotate, RenderFlags) |
Render contents in a page to a device-independent bitmap specified by a location and size.
Namespace:
Patagames.Pdf.Net
Assembly:
Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.40.2704
Syntaxpublic void Render(
PdfBitmap bitmap,
Point location,
Size size,
PageRotate rotate,
RenderFlags flags
)
Public Sub Render (
bitmap As PdfBitmap,
location As Point,
size As Size,
rotate As PageRotate,
flags As RenderFlags
)
public:
void Render(
PdfBitmap^ bitmap,
Point location,
Size size,
PageRotate rotate,
RenderFlags flags
)
member Render :
bitmap : PdfBitmap *
location : Point *
size : Size *
rotate : PageRotate *
flags : RenderFlags -> unit
public void Render(
PdfBitmap bitmap,
Point location,
Size size,
PageRotate rotate,
RenderFlags flags
)
function Render(bitmap, location, size, rotate, flags);
Parameters
- bitmap
- Type: Patagames.Pdf.NetPdfBitmap
Instance of PdfBitmap class. - location
- Type: System.DrawingPoint
A Point structure that represents the Top-Left corner of the display area in the bitmap coordinate. - size
- Type: System.DrawingSize
A Size structure that represents the horizontal and vertical size (in pixels) for displaying the page. - rotate
- Type: Patagames.Pdf.EnumsPageRotate
Page orientation. See PageRotate for details. - flags
- Type: Patagames.Pdf.EnumsRenderFlags
RenderFlags.None for normal display, or combination of RenderFlags
See Also