0

ASP.NET を使用して、複数ページの PDF ドキュメントから各ページのタイトルを取得することは可能ですか?

助けてくれてありがとう!

4

1 に答える 1

0

iTextSharp でメタデータを読み取るには:

を使用してメタデータを読み取ることができますPdfReader

PdfReader reader = new PdfReader("SomeFile.pdf");
string s = reader.Info["Author"];

出力のレンダリング/保存中にメタデータを書き込むには:

http://milan.kupcevic.net/ghostscript-ps-pdf/

  /Title (Document title)
  /Author (Author name)
  /Subject (Subject description)
  /Keywords (comma, separated, keywords)
  /ModDate (D:20061204092842)
  /CreationDate (D:20061204092842)
  /Creator (application name or creator note)
  /Producer (PDF producer name or note)
  /DOCINFO pdfmark
于 2012-08-23T20:47:17.577 に答える