forked from euske/pdfminer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
git-svn-id: https://pdfminerr.googlecode.com/svn/trunk/pdfminer@101 1…
…aa58f4a-7d42-0410-adbc-911cccaed67c
- Loading branch information
yusuke.shinyama.dummy
committed
May 15, 2009
1 parent
e930594
commit f628c0d
Showing
4 changed files
with
81 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
#!/usr/bin/env python | ||
import sys | ||
from pdflib.pdfparser import PDFDocument, PDFParser | ||
from pdflib.pdfinterp import PDFResourceManager, PDFPageInterpreter, process_pdf | ||
from pdflib.converter import SGMLConverter, HTMLConverter, TextConverter, TagExtractor | ||
from pdflib.cmap import CMapDB | ||
|
||
# main | ||
def main(argv): | ||
import getopt | ||
def usage(): | ||
print 'usage: %s [-d] [-p pagenos] [-P password] [-c codec] [-w] [-t text|html|sgml|tag] [-o output] file ...' % argv[0] | ||
return 100 | ||
try: | ||
(opts, args) = getopt.getopt(argv[1:], 'dp:P:c:T:t:o:C:D:m:w') | ||
except getopt.GetoptError: | ||
return usage() | ||
if not args: return usage() | ||
# debug option | ||
debug = 0 | ||
# path option | ||
cmapdir = 'CMap' | ||
cdbcmapdir = 'CDBCMap' | ||
# input option | ||
password = '' | ||
pagenos = set() | ||
maxpages = 0 | ||
# output option | ||
outtype = 'html' | ||
codec = 'utf-8' | ||
outfp = sys.stdout | ||
cluster_margin = None | ||
pageno = 1 | ||
scale = 1 | ||
showpageno = True | ||
for (k, v) in opts: | ||
if k == '-d': debug += 1 | ||
elif k == '-C': cmapdir = v | ||
elif k == '-D': cdbcmapdir = v | ||
elif k == '-P': password = v | ||
elif k == '-p': pagenos.update( int(x)-1 for x in v.split(',') ) | ||
elif k == '-m': maxpages = int(v) | ||
elif k == '-t': outtype = v | ||
elif k == '-c': codec = v | ||
elif k == '-o': outfp = file(v, 'wb') | ||
elif k == '-s': scale = float(v) | ||
elif k == '-T': cluster_margin = float(v) | ||
# | ||
CMapDB.debug = debug | ||
PDFResourceManager.debug = debug | ||
PDFDocument.debug = debug | ||
PDFParser.debug = debug | ||
PDFPageInterpreter.debug = debug | ||
# | ||
CMapDB.initialize(cmapdir, cdbcmapdir) | ||
rsrc = PDFResourceManager() | ||
if outtype == 'sgml': | ||
device = SGMLConverter(rsrc, outfp, codec=codec, cluster_margin=cluster_margin) | ||
elif outtype == 'html': | ||
device = HTMLConverter(rsrc, outfp, codec=codec, cluster_margin=cluster_margin, scale=scale) | ||
elif outtype == 'text': | ||
device = TextConverter(rsrc, outfp, codec=codec, cluster_margin=cluster_margin) | ||
elif outtype == 'tag': | ||
device = TagExtractor(rsrc, outfp, codec=codec) | ||
else: | ||
return usage() | ||
for fname in args: | ||
process_pdf(rsrc, device, fname, pagenos, maxpages=maxpages, password=password) | ||
device.close() | ||
return | ||
|
||
if __name__ == '__main__': sys.exit(main(sys.argv)) |