How to extract title from .pdf file using c# -
i know python such solution exist (http://pybrary.net/pypdf/). hope suggest library c# issue.
a commonly used library manipulating pdf files in .net itextsharp port of itext library. here's example:
class program { static void main() { pdfreader reader = new pdfreader("test.pdf"); var title = reader.info["title"]; console.writeline(title); } }
Comments
Post a Comment