
Then loop over them with DynaPDF.GetImage and query various values for those images like width and height. With DynaPDF.GetImageCount function you can query how many images you have in your current PDF document. See Extract Text.fmp12 and PDF Library.fmp12

That is how our PDF Library example can provide search and find words and know which page they belong to. You can store text of the whole document or per page into fields and later search for this text. A special possibility is to specify an area in a page and only extract the text from that area, e.g. Once you have a page or the whole PDF imported, you can use DynaPDF.ExtractText function to extract text from a page or multiple pages.

You can play pictures with DynaPDF.InsertImage function right from a container or with DynaPDF.InsertImageFile from a picture file. Or you use a function like DynaPDF.WriteStyledTextEx to fill in some styled text from FileMaker directly into a rectangle on the page. To write text you can use DynaPDF.WriteText for simple text. With DynaPDF.Rectangle, DynaPDF.DrawArc, DynaPDF.Bezier123 and our other drawing functions, you may build complex vector graphics. This may involve setting color with DynaPDF.SetFillColor or DynaPDF.SetStrokeColor functions and calling drawing functions like DynaPDF.MoveTo and DynaPDF.LineTo to draw a line.


Just call DynaPDF.Append to add a new page and then while the page is open, draw some content on it. Start a new blank PDF and add content to it. Please see the topics below and take a look on the relevant example projects once you downloaded our plugin. We like to show you what you can do with our DynaPDF features in our MBS FileMaker Plugin.
