Converting PDF to Text in C#
http://www.codeproject.com/Articles/12445/Converting-PDF-to-Text-in-C-2
좋은 평가를 주었네요.
필요하면 써보시는것도 좋을 듯 싶습니다.
파일명을 기재하면 text 변수에 값이 할당 되고 이를 return 한 구문입니다. 심플하네요.
private static string parseUsingPDFBox(string filename)
{
PDDocument doc = PDDocument.load(filename);
PDFTextStripper stripper = new PDFTextStripper();
string text = stripper.getText(doc);
doc.close();
return text;
}
출처 : 닷넷 (.NET) 프로그래머 모임
글쓴이 : 심재운 원글보기
메모 :
'프로그래밍언어 > C#' 카테고리의 다른 글
thread.invoke (0) | 2014.06.10 |
---|---|
스레드 파라미터넘기기 (0) | 2014.06.10 |
클래스상속 (0) | 2013.07.11 |
델리게이트 (0) | 2013.07.11 |
C#.NET으로 안드로이드개발(모노프로젝트) (0) | 2013.03.04 |