Is it possible to open PDF files in Turbo C ++, and if so, how?

I am doing a C ++ project and I want to open PDF files. How can I do this in turbo C ++? Should I switch to a different IDE?

Edited: I am doing "e-book management" in C ++. After controlling the software, I wanted to open the PDF through my program and not access Adobe Reader or other. Sorry for the incomplete question.

-1


a source to share


3 answers


If you intend to open a PDF file for viewing (for example, you will probably do so with a PDF viewer such as Acrobat Reader) and do not open the file programmatically, you cannot do this in the Turbo C ++ IDE.



Try opening the IDE in a non-screen window and you can see the IDE and PDF at the same time (in Acrobat Reader).

+1


a source


You can add PDF support to your application using the TechSoft PDF Library . Which IDE you are using doesn't matter.



+1


a source


Poppler Library is a C ++ library for rendering PDF files to any arbitrary format, be it a screen or an image. It's very easy to extend, and I wrote a program to render PDFs to a custom image format in about 150 lines, just under 5 hours - and most of that work was exporting the custom image format. The simple renderer fell under 50 lines and took less than an hour to write.

0


a source







All Articles