ElementBuilderCreateImage Method (Image, Double, Double, Double, Double) |
Create a content image Element out of a given document Image with
the lower left corner at (x, y), and scale factors (hscale, vscale).
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public Element CreateImage(
Image img,
double x,
double y,
double hscale,
double vscale
)
Public Function CreateImage (
img As Image,
x As Double,
y As Double,
hscale As Double,
vscale As Double
) As Element
public:
virtual Element^ CreateImage(
[InAttribute] Image^ img,
[InAttribute] double x,
[InAttribute] double y,
[InAttribute] double hscale,
[InAttribute] double vscale
) sealed
function CreateImage(img, x, y, hscale, vscale);
Parameters
- img
- Type: pdftron.PDFImage
the img
- x
- Type: SystemDouble
the x
- y
- Type: SystemDouble
the y
- hscale
- Type: SystemDouble
the hscale
- vscale
- Type: SystemDouble
the vscale
Return Value
Type:
Element the element
See Also