目次
iTextSharp Ver.4.1.3(LGPL/MPL) についてのメモ
NuGet Gallery | iTextSharp (LGPL / MPL) 4.1.6 にて第3者によって配布されている。
Install-Package iTextSharp-LGPL
LGPLとMPLのデュアルライセンス。
サンプルコード
Extract Images From PDF Files using iTextSharp | Software Monkey
var imageCollection = new PdfImageCollection(); using (var pdfReader = new PdfReader(pdfFileName)) { var pdfParser = new PdfReaderContentParser(pdfReader); for(var iPage = 1; iPage <= pdfReader.NumberOfPages; iPage++) { pdfParser.ProcessContent(iPage, imageCollection); } }
c# - Extract Image from a particular page in PDF using iTextSharp 4.0 - Stack Overflow
http://stackoverflow.com/questions/10689382/extract-image-from-a-particular-page-in-pdf-using-itextsharp-4-0
KishoR NaiK: C#.net - Extract image from PDF file.
http://kishor-naik-dotnet.blogspot.jp/2011/01/cnet-extract-image-from-pdf-file.html