Click here to Skip to main content
15,918,243 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi everyone,Can any one tell me how to create and read the pdf file using C# programmatically?
Posted

You can use ABCpdf.dll for this purpose. An example of use it->
using WebSupergoo.ABCpdf5;

public string GetText(string fileName)
        {
            Doc pdfDoc = new Doc();
            pdfDoc.Read(fileName);

            string contents = pdfDoc.GetText("").ToString();
            pdfDoc.Dispose();

            return contents;
        }
 
Share this answer
 
v2
Have a look at this article: Tutorials on creating PDF files using C# 2.0[^]

For more, have a look at these[^].
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900