'DeclarationPublic 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
'UsageDim instance As PDFCanvas 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.