From b8c6cb836737d7cdcdaa47b4143f0c4d1de15e09 Mon Sep 17 00:00:00 2001 From: "yusuke.shinyama.dummy" Date: Wed, 26 Aug 2009 15:20:44 +0000 Subject: [PATCH] git-svn-id: https://pdfminerr.googlecode.com/svn/trunk/pdfminer@129 1aa58f4a-7d42-0410-adbc-911cccaed67c --- docs/index.html | 12 +++++++----- pdfminer/converter.py | 14 +++++++++----- pdfminer/pdfdevice.py | 2 +- pdfminer/pdfinterp.py | 13 +++++++++++-- 4 files changed, 28 insertions(+), 13 deletions(-) diff --git a/docs/index.html b/docs/index.html index 2e0a7a6..45ff9af 100644 --- a/docs/index.html +++ b/docs/index.html @@ -18,7 +18,7 @@ Python PDF parser and analyzer
-Last Modified: Mon Aug 24 15:56:08 JST 2009 +Last Modified: Thu Aug 27 00:20:29 JST 2009
@@ -101,6 +101,7 @@ World

+

For non-ASCII languages

In order to handle non-ASCII languages (e.g. Japanese), you need to install an additional data called CMap, @@ -115,17 +116,16 @@ http://www.unixuser.org/~euske/pub/CMap.tar.bz2
  • Expand the archive and put the CMap directory under the directory where pdfminer is installed. -(Normally this should be something like /usr/lib/python2.5/site-packages.) +(Normally this should be something like /usr/lib/python2.5/site-packages/pdfminer.) For example:
    -$ cd /usr/lib/python2.5/site-packages
    +$ cd /usr/lib/python2.5/site-packages/pdfminer
     $ tar jxf CMap.tar.bz2
     
    -
  • Do the following. (this is optional, but highly recommended)
    +
  • Do the following. (this is optional and may take several minutes, but highly recommended!)
     $ python -m pdfminer.cmap
     
    -This may take several minutes. @@ -319,6 +319,8 @@ no stream header is displayed for the ease of saving it to a file.

    Changes