release-20091004

git-svn-id: https://pdfminerr.googlecode.com/svn/trunk/pdfminer@138 1aa58f4a-7d42-0410-adbc-911cccaed67c
pull/1/head
yusuke.shinyama.dummy 2009-10-04 03:48:11 +00:00
parent 2ed6b90551
commit ee97f18d4e
3 changed files with 6 additions and 6 deletions

1
TODO
View File

@ -3,4 +3,3 @@ TODOs:
- Better API Documentation. - Better API Documentation.
- Robust error handling. - Robust error handling.
- Any special handling for linearized PDFs? - Any special handling for linearized PDFs?
- Support writing/creating PDFs.

View File

@ -18,7 +18,7 @@ Python PDF parser and analyzer
<div align=right class=lastmod> <div align=right class=lastmod>
<!-- hhmts start --> <!-- hhmts start -->
Last Modified: Sat Sep 12 12:05:03 JST 2009 Last Modified: Sun Oct 4 12:47:18 JST 2009
<!-- hhmts end --> <!-- hhmts end -->
</div> </div>
@ -51,8 +51,8 @@ PDF parser that can be used for other purposes instead of text analysis.
<a name="source"></a> <a name="source"></a>
<p> <p>
<strong>Download:</strong><br> <strong>Download:</strong><br>
<a href="http://www.unixuser.org/~euske/python/pdfminer/pdfminer-20090912.tar.gz"> <a href="http://www.unixuser.org/~euske/python/pdfminer/pdfminer-20091004.tar.gz">
http://www.unixuser.org/~euske/python/pdfminer/pdfminer-20090912.tar.gz http://www.unixuser.org/~euske/python/pdfminer/pdfminer-20091004.tar.gz
</a> </a>
(1.8Mbytes) (1.8Mbytes)
@ -110,7 +110,7 @@ which is distributed from Adobe.
Here is how: Here is how:
<ol> <ol>
<li> Get a CMap archive file from <li> Get CMap files from
<a href="http://www.unixuser.org/~euske/pub/CMap.tar.bz2"> <a href="http://www.unixuser.org/~euske/pub/CMap.tar.bz2">
http://www.unixuser.org/~euske/pub/CMap.tar.bz2 http://www.unixuser.org/~euske/pub/CMap.tar.bz2
</a> </a>
@ -319,6 +319,7 @@ no stream header is displayed for the ease of saving it to a file.
<hr noshade> <hr noshade>
<h2>Changes</h2> <h2>Changes</h2>
<ul> <ul>
<li> 2009/10/04: Another matrix operation bug fixed. Thanks to Vitaly Sedelnik.
<li> 2009/09/12: Fixed rectangle handling. Able to extract image boundaries. <li> 2009/09/12: Fixed rectangle handling. Able to extract image boundaries.
<li> 2009/08/30: Fixed page rotation handling. <li> 2009/08/30: Fixed page rotation handling.
<li> 2009/08/26: Fixed zlib decoding bug. Thanks to Shon Urbas. <li> 2009/08/26: Fixed zlib decoding bug. Thanks to Shon Urbas.

View File

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