PdfCanvas.DrawImage Method (PdfImage, Double, Double)

Draws the specified image, using its original size, at the specified location.

Namespace:  BitMiracle.Docotic.Pdf
Assembly:  BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)

Syntax

C#
public void DrawImage(
	PdfImage image,
	double x,
	double y
)
VB
Public Sub DrawImage ( 
	image As PdfImage,
	x As Double,
	y As Double
)

Parameters

image
Type: BitMiracle.Docotic.Pdf.PdfImage
The image to draw.
x
Type: System.Double
The x-coordinate of the upper-left corner of the drawn image.
y
Type: System.Double
The y-coordinate of the upper-left corner of the drawn image.

See Also