pdf help

Started by
9 comments, last by asdfwe 16 years, 1 month ago
how to generate a pdf file from a c++ program thanks in advance.
Advertisement
I would load the C++ files into Scite, export to html, then use html 2 pdf?
Quote:Original post by Daniel Talagrand
I would load the C++ files into Scite, export to html, then use html 2 pdf?


too tough for me to understand ..
can u give some explanation??????????
I'd recommend CutePDF Writer.

And you really need to learn how to ask questions effectively.

Richard "Superpig" Fine - saving pigs from untimely fates - Microsoft DirectX MVP 2006/2007/2008/2009
"Shaders are not meant to do everything. Of course you can try to use it for everything, but it's like playing football using cabbage." - MickeyMouse

There a libraries that may help you along the way.
Take a look at libHaru - free PDF library.
http://libharu.org
Quote:Original post by superpig
I'd recommend CutePDF Writer.

And you really need to learn how to ask questions effectively.


i actually want a to make a pdf file by a c++ program
the user first specifies
1===the name of the pdf file
2===then the contents of the file (say some information about something)

then we have to create a pdf file ........................ with the required name and contents


any suggestions?
For automatic processing, you can combine the existing programs a2ps and pstopdf.

For instance:
#!/bin/sha2ps -o - $1 | pstopdf -i -o $2
iam working on windows(which i forgot to tell)
Cygwin. Includes a package manager which you can use to get the appropriate programs.

This topic is closed to new replies.

Advertisement