Ignore:
Timestamp:
2010-10-27T15:37:44+02:00 (15 years ago)
Author:
extropy
Message:

Transition to pdfbox library.

Location:
applications/editors/josm/plugins/pdfimport/src/pdfimport
Files:
1 added
2 deleted
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/pdfimport/src/pdfimport/pdfbox/PdfBoxParser.java

    r23862 r23863  
    4040                PDRectangle pageSize = page.findMediaBox();
    4141                Dimension pageDimension = pageSize.createDimension();
     42                int rotation = page.getRotation();
    4243
    43                 GraphicsProcessor p = new GraphicsProcessor(target, pageDimension.getHeight());
     44                GraphicsProcessor p = new GraphicsProcessor(target, rotation, pageDimension.getHeight());
    4445                PageDrawer drawer = new PageDrawer();
    4546                drawer.drawPage(p, page, pageDimension);
Note: See TracChangeset for help on using the changeset viewer.