tags:

views:

24

answers:

2

I need to convert (input) PS file to (output) PDF file via Visual C++. And after converting i need to display the pdf file in a window.

Could any one help me in this ?. How can i proceed further ?

A: 

You could use system ("ps2pdf.exe in.ps out.pdf"); using ps2pdf utility from Ghostscript.

el.pescado
A: 

To display the pdf you could use Poppler. For the conversion, I second the use of ps2pdf

anno