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

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

html - Instapaper-like algorithm -

c# - How to execute a particular part of code asynchronously in a class -