git-svn-id: https://pdfminerr.googlecode.com/svn/trunk/pdfminer@133 1aa58f4a-7d42-0410-adbc-911cccaed67c
pull/1/head
yusuke.shinyama.dummy 2009-09-12 03:05:49 +00:00
parent 3da04c0a04
commit 5b02461c6d
2 changed files with 5 additions and 4 deletions

View File

@ -18,7 +18,7 @@ Python PDF parser and analyzer
<div align=right class=lastmod>
<!-- hhmts start -->
Last Modified: Sun Aug 30 10:22:15 JST 2009
Last Modified: Sat Sep 12 12:05:03 JST 2009
<!-- hhmts end -->
</div>
@ -51,8 +51,8 @@ PDF parser that can be used for other purposes instead of text analysis.
<a name="source"></a>
<p>
<strong>Download:</strong><br>
<a href="http://www.unixuser.org/~euske/python/pdfminer/pdfminer-20090830.tar.gz">
http://www.unixuser.org/~euske/python/pdfminer/pdfminer-20090830.tar.gz
<a href="http://www.unixuser.org/~euske/python/pdfminer/pdfminer-20090912.tar.gz">
http://www.unixuser.org/~euske/python/pdfminer/pdfminer-20090912.tar.gz
</a>
(1.8Mbytes)
@ -319,6 +319,7 @@ no stream header is displayed for the ease of saving it to a file.
<hr noshade>
<h2>Changes</h2>
<ul>
<li> 2009/09/12: Fixed rectangle handling. Able to extract image boundaries.
<li> 2009/08/30: Fixed page rotation handling.
<li> 2009/08/26: Fixed zlib decoding bug. Thanks to Shon Urbas.
<li> 2009/08/24: Fixed a bug in character placing. Thanks to Pawan Jain.

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python
__version__ = '20090830'
__version__ = '20090912'
if __name__ == '__main__': print __version__