Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Win32/Win64 API (native code) (https://www.delphipraxis.net/17-win32-win64-api-native-code/)
-   -   Delphi AcroPDF print in reverse order (https://www.delphipraxis.net/141699-acropdf-print-reverse-order.html)

haidomingo 14. Okt 2009 10:44


AcroPDF print in reverse order
 
Hi,
I use AcroPDF.dll : AcroPDF.printAll;
Now I want to print in reverse order.
I could use the function AcroPDF.printPages (LastPage, FirstPage).
How can I get the total number of pages in the PDF document? (lastPage?).
I found with google this dll
This Counts the total number of pages of pdf file.
Unfortunately the call to the DLL returns always -1.
The code of dll is: Titel der Webseite
The code is not compatible with Delphi 2010.
Is there another way to print in reverse order?

Thanks.

mkinzler 14. Okt 2009 10:47

Re: AcroPDF print in reverse order
 
Try PAnsiChar instead of PChar in the call

haidomingo 14. Okt 2009 10:59

Re: AcroPDF print in reverse order
 
Zitat:

Zitat von mkinzler
Try PAnsiChar instead of PChar in the call

I changed:

Delphi-Quellcode:
function GetPdfPageCount(filename: pchar): integer; stdcall; external 'PdfPageCount.dll';
to
Delphi-Quellcode:
function GetPdfPageCount(filename: PAnsiChar): integer; stdcall; external 'PdfPageCount.dll';
and call:

Delphi-Quellcode:
..GetPdfPageCount(PAnsiChar('C:\Progetti\Totem\file.pdf'))...

and now it works perfectly.

Really simple (stupid me).

Thanks


Alle Zeitangaben in WEZ +1. Es ist jetzt 02:31 Uhr.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz