PurePDF Version 2.0

Developed or developing a new product in PureBasic? Tell the world about it.
ABBKlaus
Addict
Addict
Posts: 1143
Joined: Sat Apr 10, 2004 1:20 pm
Location: Germany

Re: PurePDF Version 2.0

Post by ABBKlaus »

here it is :

Code: Select all

CompilerIf Defined(FIXED,#PB_Structure)=0
  Structure FIXED
    fract.w
    Value.w
  EndStructure
CompilerEndIf
User avatar
Guimauve
Enthusiast
Enthusiast
Posts: 742
Joined: Wed Oct 22, 2003 2:51 am
Location: Canada

Re: PurePDF Version 2.0

Post by Guimauve »

Nice thank you !
ABBKlaus
Addict
Addict
Posts: 1143
Joined: Sat Apr 10, 2004 1:20 pm
Location: Germany

Re: PurePDF Version 2.0

Post by ABBKlaus »

Here is a first testversion of PurePDF that can load WMF-Files :
http://www.purebasicpower.de/downloads/PurePDF.pb
http://www.purebasicpower.de/downloads/PurePDF_res.pb
http://www.purebasicpower.de/downloads/ ... 0Images.pb
http://www.purebasicpower.de/downloads/ringmaster.wmf
http://www.purebasicpower.de/downloads/ ... Images.pdf

Betatesters are welcome :D

PS : i have not tested the polypolygon routine, because of a suitable WMF-File that holds some records of the polypolygone :oops:
Last edited by ABBKlaus on Mon May 21, 2012 4:54 pm, edited 1 time in total.
IdeasVacuum
Always Here
Always Here
Posts: 6426
Joined: Fri Oct 23, 2009 2:33 am
Location: Wales, UK
Contact:

Re: PurePDF Version 2.0

Post by IdeasVacuum »

I think the ability to include other file types such as WMF is very useful, thank you ABBKlaus.

Something I would really like to do is to include pages from other existing PDF files. For example I use a CAD system that can only output single-page files, I'd like to merge those into a single PDF document.
IdeasVacuum
If it sounds simple, you have not grasped the complexity.
ABBKlaus
Addict
Addict
Posts: 1143
Joined: Sat Apr 10, 2004 1:20 pm
Location: Germany

Re: PurePDF Version 2.0

Post by ABBKlaus »

IdeasVacuum wrote:I think the ability to include other file types such as WMF is very useful, thank you ABBKlaus.
Thanks.
IdeasVacuum wrote:Something I would really like to do is to include pages from other existing PDF files. For example I use a CAD system that can only output single-page files, I'd like to merge those into a single PDF document.
Maybe my next project :wink:
ABBKlaus
Addict
Addict
Posts: 1143
Joined: Sat Apr 10, 2004 1:20 pm
Location: Germany

Re: PurePDF Version 2.0

Post by ABBKlaus »

IdeasVacuum
Always Here
Always Here
Posts: 6426
Joined: Fri Oct 23, 2009 2:33 am
Location: Wales, UK
Contact:

Re: PurePDF Version 2.0

Post by IdeasVacuum »

....Thanks ABBKlaus!

btw, the file dates are a bit weird 09/03/98?
IdeasVacuum
If it sounds simple, you have not grasped the complexity.
ABBKlaus
Addict
Addict
Posts: 1143
Joined: Sat Apr 10, 2004 1:20 pm
Location: Germany

Re: PurePDF Version 2.0

Post by ABBKlaus »

IdeasVacuum wrote:....Thanks ABBKlaus!

btw, the file dates are a bit weird 09/03/98?
Your welcome.

Whats weird, the WMF format exists since Windows 3.x ?
IdeasVacuum
Always Here
Always Here
Posts: 6426
Joined: Fri Oct 23, 2009 2:33 am
Location: Wales, UK
Contact:

Re: PurePDF Version 2.0

Post by IdeasVacuum »

ah no, on zip extraction, all the PurePDF files are dated 1998.
IdeasVacuum
If it sounds simple, you have not grasped the complexity.
jassing
Addict
Addict
Posts: 1885
Joined: Wed Feb 17, 2010 12:00 am

Re: PurePDF Version 2.0

Post by jassing »

IdeasVacuum wrote:ah no, on zip extraction, all the PurePDF files are dated 1998.
Hmm. Maybe you've looking at a cached or older version -- I just downloaded it:
Image
IdeasVacuum
Always Here
Always Here
Posts: 6426
Joined: Fri Oct 23, 2009 2:33 am
Location: Wales, UK
Contact:

Re: PurePDF Version 2.0

Post by IdeasVacuum »

Not cache and it is the latest version (223). Perhaps it is a WinZip quirk - my WinZip is a relatively old version.
IdeasVacuum
If it sounds simple, you have not grasped the complexity.
michel
Enthusiast
Enthusiast
Posts: 142
Joined: Mon Feb 19, 2007 5:47 pm
Location: Luxemburg

Re: PurePDF Version 2.0 dpi

Post by michel »

Hello ABBKlaus,

What is the standard resolution in dpi within PurePDF?

Michel
ABBKlaus
Addict
Addict
Posts: 1143
Joined: Sat Apr 10, 2004 1:20 pm
Location: Germany

Re: PurePDF Version 2.0

Post by ABBKlaus »

I guess its fixed at 1/72 inch (Minimum is 0.014 inch if UserUnits are set)

PurePDF itself is not using the UserUnits parameter so its defaulting to 1.0 which means 1/72 of an inch.

BR Klaus
Last edited by ABBKlaus on Sat Jun 09, 2012 10:55 pm, edited 1 time in total.
michel
Enthusiast
Enthusiast
Posts: 142
Joined: Mon Feb 19, 2007 5:47 pm
Location: Luxemburg

Re: PurePDF Version 2.0

Post by michel »

Hello ABBKlaus,

Thank you.
Do you have some ideas how to realize line hatching in a box within PurePDF?

michel
ABBKlaus
Addict
Addict
Posts: 1143
Joined: Sat Apr 10, 2004 1:20 pm
Location: Germany

Re: PurePDF Version 2.0

Post by ABBKlaus »

michel wrote:Hello ABBKlaus,

Thank you.
Do you have some ideas how to realize line hatching in a box within PurePDF?

michel
Not really, you might want to try it with filled polygons !?
(the path commands)
Post Reply