I am beginner in programming.I want to make a program which reads pdf documents.For this (after googling) I found that a library pdflib is uded to do so.but i dont know how to use any library.
using library
Collapse
X
-
Originally posted by almonI am beginner in programming.I want to make a program which reads pdf documents.For this (after googling) I found that a library pdflib is uded to do so.but i dont know how to use any library.
which language are you using in programming?
thamks. -
The first thing you will have to do is download the library and put it in the proper place...I'm not sure exactly where on your computer it should go, but I'm sure another expert can help me out there.
Then you will have to use the proper #include statement...som ething like #include <pdflib> at the top of your program. This will make sure you can actually use this nice new library you've included.
As for using the library's functions, that's for you to learn. You can't be sure that any of the experts here have used this library before, so you need to look up the functions you need and how to use them.Comment
-
Originally posted by Ganon11The first thing you will have to do is download the library and put it in the proper place...I'm not sure exactly where on your computer it should go, but I'm sure another expert can help me out there.Comment
Comment