ThinkGeo.com    |     Documentation    |     Premium Support

JPEG 2000 Raster Layer

Hi,


In Map Suite 2.0 I was able to load JPEG 2000 Raster Layers but I'm having a hard time figuring this out in 3.0.  Which object shoudl I use?  I tried the GDIPlusRasterLayer and the ECWRasterLayer but neither one worked.  Does 3.0 support JPEG2000 and if so how woudl I load a JPEG 2000 raster file?


Thanks!



Clint, 
  
 Thanks for reporting this. We don’t support it now and we will add this feature pretty soon.  
  
 Ben 


Clint, 
  
 Sorry I made a mistake! We now support jpeg2000 format by using MrSidRasterLayer or EcwRasterLayer. The code will be like  
  
 
            MrSidRasterLayer ecwImageLayer = new MrSidRasterLayer(@"…\SampleData\Data\globe.jp2");
            ecwImageLayer.UpperThreshold = double.MaxValue;
            ecwImageLayer.LowerThreshold = 0;

            winformsMap1.StaticOverlay.Layers.Add("EcwImageLayer", ecwImageLayer);

            winformsMap1.Refresh();
 
  
 Ben.