|
Some web pages are too large to fit on one PDF page.
To split a web page across multiple PDF pages you need to call
AddImageUrl or AddImageHtml to render the first page. The ID
returned from these calls represents the head of the chain.
To add subsequent pages to the chain you need to make calls to
AddImageToChain passing in the previous image from the chain each
time.
As well as using chaining to split web pages across multiple PDF
pages you can also use it to split your web pages across multiple
columns within a page. You can even split your chain to generate
multiple copies of the same page.
More information can be found in the HTML / CSS Rendering
section of the documentation.
Similarly some PostScript (PS) files contain more than one page
of content.
To split a PS file across multiple PDF pages you need to call
AddImageFile or AddImageData to render the first page. The
ID returned from these calls represents the head of the chain.
To add subsequent pages to the chain you need to make calls to
AddImageToChain passing in the previous image from the chain each
time.
|