Topics
All
MacOS
(Only)
Windows
(Only)
Linux
(Only, Not)
iOS
(Only, Not)
Components
Crossplatform Mac & Win
Server
Client
Old
Deprecated
Guides
Examples
Videos
New in version:
10.1
10.2
10.3
10.4
10.5
11.0
11.1
11.2
11.3
11.4
Statistic
FMM
Blog
Adds new pages to the PDF with given image paths.
Component | Version | macOS | Windows | Linux | Server | iOS SDK |
DynaPDF | 6.3 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes |
Parameter | Description | Example | Flags |
---|---|---|---|
The PDF reference returned from DynaPDF.New. | |||
Image Paths | The list of native file paths. | "/Users/cs/Desktop/test.jpg" | |
Resolution | The resolution to use. Normally we use the ones in the images, but you can overwrite it here. |
300 | Optional |
Returns number or error.
Adds three picture pages:
Set Variable [$r; Value:MBS( "DynaPDF.AppendImagePages"; $pdf; "/Users/cs/Desktop/Auto2.JPG¶/Users/cs/Desktop/Auto4.JPG¶/Users/cs/Desktop/Auto1.JPG" )]
Create PDF with images:
Set Variable [$pdf; Value:MBS("DynaPDF.New")]
# Set destination path
Set Variable [$r; Value:MBS( "DynaPDF.OpenOutputFile"; $pdf; "/Users/cs/Desktop/test.pdf")]
# Add pages
Set Variable [$r; Value:MBS( "DynaPDF.AppendImagePages"; $pdf; "/Users/cs/Desktop/Auto2.JPG¶/Users/cs/Desktop/Auto4.JPG¶/Users/cs/Desktop/Auto1.JPG"; 300 )]
# Save
Set Variable [$PDFData; Value:MBS("DynaPDF.Save"; $pdf; "hello.pdf")]
# Cleanup
Set Variable [$r; Value:MBS("DynaPDF.Release"; $pdf)]
Created 27th June 2016, last changed 3th July 2016
DynaPDF.AppendImagePage - DynaPDF.AppendPage
Feedback: Report problem or ask question.