2022.1

Table Of Contents
scaleFactor
Scale at which to display the image. For bitmaps, this is based on a 72 dpi resolution. Use 1.0
for the nominal size.
Merge2(srcPage, left, top, rotateAngle, scaleFactor)
Transparently places a PDF page on top of the current page at a specific location. The source
page can be either from the same PDF or another opened file. If the source is from the same
PDF file, the source page is not modified. This allows to have the same behavior as
IPDF.MergeWith() by first inserting the pages from an external file, merging them and then
deleting them, but with more flexibility.
Syntax
VOID Merge2 (
IPage srcPage,
FLOAT left,
FLOAT top,
FLOAT rotateAngle,
FLOAT scaleFactor
)
srcPage
IPage object to overlay on the current page.
left
Coordinate at which to place the left edge of the image from the left edge of the page, in
points.
top
Coordinate at which to place the top edge of the image from the top of the page, in points.
rotateAngle
Angle at which to rotate counter-clockwise the inserted image, in degrees. The rotation is
done after the image is placed at (left, top) and centered around that point.
scaleFactor
Scale at which to display the image. For bitmaps, this is based on a 72 dpi resolution. Use 1.0
for the nominal size.
Page 270