Re: [Lazarus] Get the number of pages in a pdf file

2019-06-16 Thread Joe C. Hecht via lazarus
Searching for strings of /Pages and /Count would be highly unreliable. At worst, you would need to search the whole file, adding the entries. To do it right, you need to get the page tree of the document catalog, then recursively look up the kids of each page tree node, increment the count, then

Re: [Lazarus] I found an AnchorDockingDsgn package bug?

2019-06-16 Thread Michael W. Vogel via lazarus
Am 14.06.2019 um 23:51 schrieb leyba bronstain via lazarus: After installing the AnchorDockingDsgn package for Win7 x64, I noticed a strange IDE behavior. If you dock any other window to the Source Code Editor in the manner shown in the figure, then it becomes impossible to close any tab of the

Re: [Lazarus] Get the number of pages in a pdf file

2019-06-16 Thread Santiago A. via lazarus
El 15/06/2019 a las 13:56, Graeme Geldenhuys via lazarus escribió: On 14/06/2019 6:19 pm, Rogério Martins via lazarus wrote: Is there a function for read info about a pdf file ? I need to know the number of pages in a given pdf file. I don't know of a Object Pascal library you can you, but