PurePDF library 1.0 BETA
PurePDF library 1.0 BETA
Hi,
Based on the FPDF I created a PureBasic PDF Library.
The files can be downloaded at :
http://smollies.fateback.com/PurePDF.zip
and at : http://www.purearea.net
I'm still working on the reference manual.
Any comments are welcome.
Enjoy,
LuckyLuke
Based on the FPDF I created a PureBasic PDF Library.
The files can be downloaded at :
http://smollies.fateback.com/PurePDF.zip
and at : http://www.purearea.net
I'm still working on the reference manual.
Any comments are welcome.
Enjoy,
LuckyLuke
This works great! Thanks!
Tutorial number 5 did work for me. I had to install ZLib and ZLibWrapper.
I have one remark: I have a PDF tool that makes it possible to edit a PDF document. This tool can open all PDF's I have seen yet, but it can't open the PDF your tool produces. I also see that Adobe Acrobat Reader opens the PDF's saying "Rebuilding...". Do you use a different PDF structure than normal and could you change that?

Tutorial number 5 did work for me. I had to install ZLib and ZLibWrapper.
I have one remark: I have a PDF tool that makes it possible to edit a PDF document. This tool can open all PDF's I have seen yet, but it can't open the PDF your tool produces. I also see that Adobe Acrobat Reader opens the PDF's saying "Rebuilding...". Do you use a different PDF structure than normal and could you change that?
Thanks for nice the comments.
Example 5 is using the ZLib and ZLibWrapper libraries.
I Used purebasic and Tailbite to create this lib.
I need to do some cleanup first of the sources before publishing the them.
The download file contains a reference manual now.
Have to go now. Icecream is waiting for me.

Example 5 is using the ZLib and ZLibWrapper libraries.
I Used purebasic and Tailbite to create this lib.
I need to do some cleanup first of the sources before publishing the them.
The download file contains a reference manual now.
Have to go now. Icecream is waiting for me.

Acrobat Reader rebuild
I think there is an error in the generated PDF-Files.
In my tutorial1.pdf, the Offset to xref is not correct:
this points to "startxref"
you must use the offset to "xref"
In my tutorial1.pdf, the Offset to xref is not correct:
Code: Select all
startxref
888
%%EOF
you must use the offset to "xref"
Code: Select all
startxref
663
%%EOF
An updated version that solves the startxref problem (wrong offset used
) can be found at :
http://smollies.fateback.com/PPDFUp01.zip
Thanks again for the information/comments.

http://smollies.fateback.com/PPDFUp01.zip
Thanks again for the information/comments.

-
- Addict
- Posts: 1126
- Joined: Wed Oct 15, 2003 12:40 am
- Location: Sweden
- Contact:
Version 1.02 released
- Added pdf_Ellipse
- Added pdf_Circle
- Added pdf_IncludeJS (include javascript in PDF document)
- Added pdf_MultiCellBlt
- Added WaterMark tutorial (tut13)
- Update pdf_Cell : Forced justification added (FJ)
- Update pdf_MultiCell : Forced justification added (FJ)
- Bugfix pdf_Multicell (using border 1)
- Bugfix pdf_Rotate (angle 0 restored)
http://smollies.fateback.com/PPDFUp02.zip
- Added pdf_Ellipse
- Added pdf_Circle
- Added pdf_IncludeJS (include javascript in PDF document)
- Added pdf_MultiCellBlt
- Added WaterMark tutorial (tut13)
- Update pdf_Cell : Forced justification added (FJ)
- Update pdf_MultiCell : Forced justification added (FJ)
- Bugfix pdf_Multicell (using border 1)
- Bugfix pdf_Rotate (angle 0 restored)
http://smollies.fateback.com/PPDFUp02.zip