'Declaration
Public Overloads Function DrawImage( _ ByVal image As PdfImage, _ ByVal x As Double, _ ByVal y As Double, _ ByVal width As Double, _ ByVal height As Double, _ ByVal rotation As Double, _ ByVal flipDirection As PdfFlipDirection _ ) As PdfSize
'Usage
Dim instance As PdfGraphics Dim image As PdfImage Dim x As Double Dim y As Double Dim width As Double Dim height As Double Dim rotation As Double Dim flipDirection As PdfFlipDirection Dim value As PdfSize value = instance.DrawImage(image, x, y, width, height, rotation, flipDirection)
Parameters
- image
- PdfImage to draw.
- x
- The x-coordinate of the upper-left corner of the drawn image.
- y
- The y-coordinate of the upper-left corner of the drawn image.
- width
- Width of the drawn image.
- height
- Height of the drawn image.
- rotation
- Rotation angle of the drawn image.
- flipDirection
- Direction for flipping the drawn image.
Return Value
The size of the drawn image.