Revision: 6562
          http://sourceforge.net/p/jump-pilot/code/6562
Author:   edso
Date:     2020-09-30 11:08:48 +0000 (Wed, 30 Sep 2020)
Log Message:
-----------
readded old ImageIO-Ext tif driver in the hope to stabilize sextante raster 
layer loading

Modified Paths:
--------------
    
core/trunk/src/com/vividsolutions/jump/workbench/imagery/geoimg/GeoRaster.java
    core/trunk/src/org/openjump/core/rasterimage/TiffUtilsV2.java

Added Paths:
-----------
    core/trunk/lib/imageio-ext/imageio-ext-tiff-1.1.13.jar

Added: core/trunk/lib/imageio-ext/imageio-ext-tiff-1.1.13.jar
===================================================================
(Binary files differ)

Index: core/trunk/lib/imageio-ext/imageio-ext-tiff-1.1.13.jar
===================================================================
--- core/trunk/lib/imageio-ext/imageio-ext-tiff-1.1.13.jar      2020-09-30 
11:07:16 UTC (rev 6561)
+++ core/trunk/lib/imageio-ext/imageio-ext-tiff-1.1.13.jar      2020-09-30 
11:08:48 UTC (rev 6562)

Property changes on: core/trunk/lib/imageio-ext/imageio-ext-tiff-1.1.13.jar
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Modified: 
core/trunk/src/com/vividsolutions/jump/workbench/imagery/geoimg/GeoRaster.java
===================================================================
--- 
core/trunk/src/com/vividsolutions/jump/workbench/imagery/geoimg/GeoRaster.java  
    2020-09-30 11:07:16 UTC (rev 6561)
+++ 
core/trunk/src/com/vividsolutions/jump/workbench/imagery/geoimg/GeoRaster.java  
    2020-09-30 11:08:48 UTC (rev 6562)
@@ -151,7 +151,7 @@
       if (!uri.isAbsolute()) // means it has a scheme://
         throw new URISyntaxException(imageFileLocation, "missing scheme://");
     } catch (URISyntaxException e) {
-      Logger.debug("not an URI, will treat as path -> "+imageFileLocation, e);
+      Logger.trace("not an URI, will treat as path -> "+imageFileLocation, e);
       File file = new File(imageFileLocation);
       uri = file.toURI();
     }

Modified: core/trunk/src/org/openjump/core/rasterimage/TiffUtilsV2.java
===================================================================
--- core/trunk/src/org/openjump/core/rasterimage/TiffUtilsV2.java       
2020-09-30 11:07:16 UTC (rev 6561)
+++ core/trunk/src/org/openjump/core/rasterimage/TiffUtilsV2.java       
2020-09-30 11:08:48 UTC (rev 6562)
@@ -67,7 +67,8 @@
     GeoReferencedRaster geoRaster;
     try {
       geoRaster = new GeoReferencedRaster(tiffFile.toString(),
-          new com.github.jaiimageio.impl.plugins.tiff.TIFFImageReaderSpi());
+          new it.geosolutions.imageioimpl.plugins.tiff.TIFFImageReaderSpi());
+          //new com.github.jaiimageio.impl.plugins.tiff.TIFFImageReaderSpi());
     } catch (ReferencedImageException e) {
       // TODO: handle errors better, wrapping it in IOException here
       //       because that's what's handled up from here



_______________________________________________
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel

Reply via email to