
PurePDF library 1.0 BETA
-
- Enthusiast
- Posts: 202
- Joined: Sun Apr 27, 2003 4:44 am
- Location: Michigan, USA
- Contact:
I installed your new version and every example I try compiles fine but when I run it it crashes. Are there any other requirement to use this? Like other .dll's or libs?
I would really like this. Thanks
I would really like this. Thanks
-Ryan
RJP Computing
Ubuntu 8.10/WinXP, AMD Athlon 64 3000+, 1000MB RAM, AC 97 Audio, nVidia GeForce 7600GT 512MB
RJP Computing
Ubuntu 8.10/WinXP, AMD Athlon 64 3000+, 1000MB RAM, AC 97 Audio, nVidia GeForce 7600GT 512MB
any ideas on opening an existing pdf form and writing on it?
First of all LuckyLuke a BIG Thanks for this most excellent library and the help files and tuts included! This solves a great many report generating needs I am sure. In my case, I am trying to take an existing form (i.e. a government tax schedule) and write in figures on that form. I don't see how to open an existing document. At first I thought it would be in the open command, but there is no param for a filename... Is there a way to accomplish the task of opening an existing form so I can write on it?
Thanks again for your release of this library!
Thanks again for your release of this library!
For the moment it is not possible to open existing PDF files. However, i found a php class doing this : FPDI. I'll have a look on this.
The lib was compiled before fred changed a bit in PB3.92. That's caused the crashes.
@ABBKlaus, El_Choni:
I can't create a new lib with PB3.92 (after fred changes) and Tailbite V1.2Beta1.5. Putting the pdf_SetProtection in comments works fine.
I guess that's why Tut19 fails .
Any help is appreciated.
Maybe I need to split the lib in several smaller parts ?
The lib was compiled before fred changed a bit in PB3.92. That's caused the crashes.
@ABBKlaus, El_Choni:
I can't create a new lib with PB3.92 (after fred changes) and Tailbite V1.2Beta1.5. Putting the pdf_SetProtection in comments works fine.

I guess that's why Tut19 fails .
Any help is appreciated.
Maybe I need to split the lib in several smaller parts ?
thanks Lucky Luke
I took a look at your link re FPDI and I was surprised at the effort needed for that solution....
In another language I had captured an image of the pdf as a bmp and wrote on top of that (a less than optimum means but passable) and I suspect I will duplicate that using the manually captured image of the pdf in the background of the actual PDF.
Thanks again for your efforts!

Thanks again for your efforts!
there is a bug in _md5_16
freeing memory with FreeMemory(*txt) it works for me. I am using PB 9.2.
___________
schic
freeing memory with FreeMemory(*txt) it works for me. I am using PB 9.2.
Code: Select all
Procedure.s _md5_16(*txt,txt_len)
tmp$ = MD5Fingerprint(*txt,txt_len)
ret$=""
For i = 1 To 32 Step 2
ret$ + Chr(hexdec(Mid(tmp$,i,2)))
Next
FreeMemory(*txt)
ProcedureReturn ret$
EndProcedure
schic
HELP FILE in purepdf
It seems that in the help file the explanation on PDF_setprotection isn't present.
Can you plan to open an existing document ?
Can you plan forms ?
Thanks for your library which know works perfectly with teh new version of Talibite (Thanks also to El Choni)
Sorry for my bad english.
Can you plan to open an existing document ?
Can you plan forms ?
Thanks for your library which know works perfectly with teh new version of Talibite (Thanks also to El Choni)
Sorry for my bad english.
- Psychophanta
- Always Here
- Posts: 5153
- Joined: Wed Jun 11, 2003 9:33 pm
- Location: Anare
- Contact:
New version released :
PurePDF 1.21
Barcode support added.
Added constants (see help file)
Improved pdf_image function
Some functions have other arguments now :
pdf_open
pdf_cell
pdf_setdisplaymode
Enjoy
PurePDF 1.21
Barcode support added.
Added constants (see help file)
Improved pdf_image function
Some functions have other arguments now :
pdf_open
pdf_cell
pdf_setdisplaymode
Enjoy

could you please have a look at the problem explained here :
viewtopic.php?t=13259
viewtopic.php?t=13259
No programming language is perfect. There is not even a single best language.
There are only languages well suited or perhaps poorly suited for particular purposes. Herbert Mayer
There are only languages well suited or perhaps poorly suited for particular purposes. Herbert Mayer