Changeset 689
- Timestamp:
- 01/18/06 12:02:10 (3 years ago)
- Files:
-
- pypdf/trunk/CHANGELOG (modified) (1 diff)
- pypdf/trunk/README (modified) (1 diff)
- pypdf/trunk/setup.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
pypdf/trunk/CHANGELOG
r678 r689 1 Version 1.1, 2006-01-18 2 ----------------------- 3 4 - Add capability to rotate pages. 5 6 - Improved PDF reading support to properly manage inherited attributes from 7 /Type=/Pages nodes. This means that page groups that are rotated or have 8 different media boxes or whatever will now work properly. 9 10 - Added PDF 1.5 support. Namely cross-reference streams and object streams. 11 This release can mangle Adobe's PDFReference16.pdf successfully. 12 13 1 14 Version 1.0, 2006-01-17 2 15 ----------------------- pypdf/trunk/README
r679 r689 10 10 input2 = PdfFileReader(file("document2.pdf", "rb")) 11 11 for i in range(input2.getNumPages()): 12 output.addPage(input2.getPage(i) )12 output.addPage(input2.getPage(i).rotateClockwise(90)) 13 13 14 14 outputStream = file("document-output.pdf", "wb") pypdf/trunk/setup.py
r680 r689 18 18 setup( 19 19 name="pyPdf", 20 version="1. 0",20 version="1.1", 21 21 description="PDF toolkit", 22 22 long_description=long_description, … … 24 24 author_email="mfenniak@pobox.com", 25 25 url="http://stompstompstomp.com/pyPdf/", 26 download_url="http://stompstompstomp.com/pyPdf/pyPdf-1. 0.tar.gz",26 download_url="http://stompstompstomp.com/pyPdf/pyPdf-1.1.tar.gz", 27 27 classifiers = [ 28 28 "Development Status :: 4 - Beta",
