1

FWToolsとSharpMap(gdal_sharpを使用)を使用してアプリケーションを構築しています。そして、私は奇妙なエラーがあります。ラスターレイヤーの読み込みは、デバッグモードでは正常に実行されますが、リリースでは、呼び出し時にコンストラクターのSharpMap.Layers.GdalRasterLayerで例外がスローされます。

 _projectionWkt = _gdalDataset.GetProjectionRef();

完全な例外は次のとおりです。

{System.AccessViolationException: Attempted to read or write protected memory. This is often an indication that other memory is corrupt.
   at OSGeo.GDAL.GdalPINVOKE.Dataset_GetProjectionRef(HandleRef jarg1)
   at OSGeo.GDAL.Dataset.GetProjectionRef()
   at SharpMap.Layers.GdalRasterLayer..ctor(String strLayerName, String imageFilename) in d:\Fakultet\IX Semestar\GIS\Projekat\GreenGIS\SharpMap.Extensions\Layers\GdalRasterLayer.cs:line 404
   at GreenGIS.Form1.addRasterLayer() in d:\Fakultet\IX Semestar\GIS\Projekat\GreenGIS\GreenGIS\Form1.cs:line 50
   at GreenGIS.Form1.toolStripButtonAddVector_Click(Object sender, EventArgs e) in d:\Fakultet\IX Semestar\GIS\Projekat\GreenGIS\GreenGIS\Form1.cs:line 129
   at System.Windows.Forms.ToolStripItem.RaiseEvent(Object key, EventArgs e)
   at System.Windows.Forms.ToolStripButton.OnClick(EventArgs e)
   at System.Windows.Forms.ToolStripItem.HandleClick(EventArgs e)
   at System.Windows.Forms.ToolStripItem.HandleMouseUp(MouseEventArgs e)
   at System.Windows.Forms.ToolStripItem.FireEventInteractive(EventArgs e, ToolStripItemEventType met)
   at System.Windows.Forms.ToolStripItem.FireEvent(EventArgs e, ToolStripItemEventType met)
   at System.Windows.Forms.ToolStrip.OnMouseUp(MouseEventArgs mea)
   at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
   at System.Windows.Forms.Control.WndProc(Message& m)
   at System.Windows.Forms.ScrollableControl.WndProc(Message& m)
   at System.Windows.Forms.ToolStrip.WndProc(Message& m)
   at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
   at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
   at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
   at System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
   at System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
   at System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
   at System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
   at System.Windows.Forms.Application.Run(Form mainForm)
   at GreenGIS.Program.Main() in d:\Fakultet\IX Semestar\GIS\Projekat\GreenGIS\GreenGIS\Program.cs:line 19}

奇妙なことに、デバッグではすべてが正常に機能します。ビルドセットアップは正確で、.Net 4.0、x86プラットフォームの両方です。

何か案は?

前もって感謝します

4

2 に答える 2

1

同様の問題が発生しましたが、 http: //www.gisinternals.com/sdk/から現在コンパイルされているバイナリを使用した後、問題は修正されました。http://vipassanaandenvironmentalinformatics.blogspot.co.nz/2013/03/getting-started-with-c-and-gdal.htmlで、自分に合った手順を文書化しました。

この答えがまだ他の人の助けになることを願っています。

于 2013-03-19T22:23:16.493 に答える
0

これはWindows8に問題があるようで、.Net4.0と一緒にDEPを実装しています。ラッパーでC++dllを使用していますが、OSで実行できません。DLLを編集するか、データ実行防止をオフにすることで解決できます。

于 2013-01-27T00:52:27.677 に答える