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:
9.4
9.5
10.0
10.1
10.2
10.3
10.4
10.5
11.0
11.1
Statistic
FMM
Blog
DynaPDF.AppendImagePages
Adds new pages to the PDF with given image paths.
Component | Version | macOS | Windows | Linux | Server | FileMaker iOS SDK |
DynaPDF | 6.3 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes |
Parameters
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 |
Result
Returns number or error.
Description
Adds new pages to the PDF with given image paths.This is a convenience function. It creates pages (DynaPDF.AppendPage), reads image format (DynaPDF.ReadImageFormat) and resolution (DynaPDF.ReadImageResolution) and places image on page (DynaPDF.InsertImageFile).
Returns number of images added. Because TIFF files can include several images, this count may be higher than the number of file paths.
Examples
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)]
See also
- DynaPDF.AppendImagePage
- DynaPDF.AppendPage
- DynaPDF.InsertImage
- DynaPDF.InsertImageFile
- DynaPDF.New
- DynaPDF.OpenOutputFile
- DynaPDF.ReadImageFormat
- DynaPDF.ReadImageResolution
- DynaPDF.Release
- WIA.Images
Example Databases
Blog Entries
- Create PDF from scanned images and skip blank pages
- MBS FileMaker Plugin, version 9.1pr5
- MBS FileMaker Plugin 6.3 for OS X/Windows
- MBS FileMaker Plugin, version 6.3pr5
Release notes
- Version 9.1
- Fixed bug with image indexes for DynaPDF.AppendImagePages function.
Created 27th June 2016, last changed 3th July 2016
DynaPDF.AppendImagePage - DynaPDF.AppendPage
Feedback: Report problem or ask question.

Links
MBS Xojo Plugins