leadtools提供了封裝後的dicom插件,能夠很是方便的開發出dicom通信部分的組件,本篇教程講解如何使用相關的接口進行代碼編寫,實現Dicom協議中的CStore存儲操做。服務器
1.用vs2015建立一個winform項目,引用下面的dll,並在代碼裏引用插件
using Leadtools; using Leadtools.Dicom; using Leadtools.Dicom.Scu.Common; using Leadtools.Dicom.Scu; using Leadtools.MedicalViewer; using System.Net; using System.IO;
2.建立下面的對象orm
// CStore highlevel 客戶端和服務端對象 private StoreScu _cstore; private DicomScp _server = new DicomScp();
3.初始化服務器和客戶端參數,server
本次用的服務器便是開發包中運行pacs服務器設置程序後,建立的L19_PACS_SCP64對象
private void initServer() { _server = new DicomScp(); _server.AETitle = "L19_PACS_SCP64"; _server.PeerAddress = IPAddress.Parse("10.32.1.75"); _server.Port = 534; _server.Timeout = 30; }
private void initCstore() { _cstore = new StoreScu(); _cstore.AETitle = "L19_CLIENT64"; _cstore.HostPort = 1030; //存儲成功後 _cstore.AfterCStore += _cstore_AfterCStore; }
4.執行存儲命令教程
private void 存儲ToolStripMenuItem_Click(object sender, EventArgs e) { string filename ="D:\\Xa.dcm"; _cstore.Store(_server, filename); }
保存成功後便可在服務器管理器中,或者使用客戶端查詢已經存儲的圖像。接口