Changeset 32520 in osm


Ignore:
Timestamp:
2016-07-02T01:23:20+02:00 (9 years ago)
Author:
donvip
Message:

update to PDFBox 1.8.12

Location:
applications/editors/josm/plugins/pdfimport
Files:
3 added
3 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/pdfimport/.classpath

    r32019 r32520  
    55        <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
    66        <classpathentry combineaccessrules="false" kind="src" path="/JOSM"/>
    7         <classpathentry exported="true" kind="lib" path="lib/fontbox-1.8.11.jar"/>
    8         <classpathentry exported="true" kind="lib" path="lib/jempbox-1.8.11.jar"/>
    9         <classpathentry exported="true" kind="lib" path="lib/pdfbox-1.8.11.jar"/>
     7        <classpathentry kind="lib" path="lib/fontbox-1.8.12.jar"/>
     8        <classpathentry kind="lib" path="lib/jempbox-1.8.12.jar"/>
     9        <classpathentry kind="lib" path="lib/pdfbox-1.8.12.jar"/>
    1010        <classpathentry kind="output" path="bin"/>
    1111</classpath>
  • applications/editors/josm/plugins/pdfimport/README

    r23702 r32520  
    55Generally useful if you have a map in PDF file and want to automate data extraction.
    66This plugin is available under the GPL licence (version 2.0 or later).
    7 Uses PDFClown library to parse PDF files, see http://sourceforge.net/projects/clown/ for more info.
     7Uses PDFBox library to parse PDF files, see https://pdfbox.apache.org for more info.
    88
    99
     
    1818  GPL-v2.0.txt                          GPL version 2 license text
    1919  GPL-v3.0.txt                          GPL version 3 license text
    20   build.xml                             deployment build file
    21   build-dev.xml                         vevelopment build file - uses local version of PDFClown
    22    
     20  build.xml                             deployment build file
     21
    2322 
    2423Build
     
    7574* List of JOSM Plugins
    7675  http://josm.openstreetmap.de/wiki/Plugins
    77  
    78  
    79  
    80      
    81 
    82  
  • applications/editors/josm/plugins/pdfimport/src/pdfimport/pdfbox/operators/CloseFillEvenOddAndStrokePath.java

    r23991 r32520  
    2323import org.apache.pdfbox.cos.COSBase;
    2424import org.apache.pdfbox.util.PDFOperator;
     25import org.apache.pdfbox.util.operator.OperatorProcessor;
    2526
    2627import pdfimport.pdfbox.PageDrawer;
     
    3233 * @version $Revision: 1.0 $
    3334 */
    34 public class CloseFillEvenOddAndStrokePath extends org.apache.pdfbox.util.operator.OperatorProcessor
     35public class CloseFillEvenOddAndStrokePath extends OperatorProcessor
    3536{
    3637
  • applications/editors/josm/plugins/pdfimport/src/pdfimport/pdfbox/operators/FillEvenOddAndStrokePath.java

    r23991 r32520  
    2323import org.apache.pdfbox.cos.COSBase;
    2424import org.apache.pdfbox.util.PDFOperator;
     25import org.apache.pdfbox.util.operator.OperatorProcessor;
    2526
    2627import pdfimport.pdfbox.PageDrawer;
     
    3233 * @version $Revision: 101 $
    3334 */
    34 public class FillEvenOddAndStrokePath extends org.apache.pdfbox.util.operator.OperatorProcessor
     35public class FillEvenOddAndStrokePath extends OperatorProcessor
    3536{
    3637
  • applications/editors/josm/plugins/pdfimport/src/pdfimport/pdfbox/operators/FillNonZeroAndStrokePath.java

    r23991 r32520  
    2323import org.apache.pdfbox.cos.COSBase;
    2424import org.apache.pdfbox.util.PDFOperator;
     25import org.apache.pdfbox.util.operator.OperatorProcessor;
    2526
    2627import pdfimport.pdfbox.PageDrawer;
     
    3233 * @version $Revision: 1.1 $
    3334 */
    34 public class FillNonZeroAndStrokePath extends org.apache.pdfbox.util.operator.OperatorProcessor
     35public class FillNonZeroAndStrokePath extends OperatorProcessor
    3536{
    3637
Note: See TracChangeset for help on using the changeset viewer.