今天在用DicomFile.Open(Stream s)这个接口时,遇到一个异常:
DicomIoException: Requested 132 bytes past end of fixed length stream.
具体原因我们看下源码就很清楚:
public bool Require(uint count, ByteSourceCallback callback, object state) {
lock (_lock) {
if ((_stream.Length - _stream.Position) >= count)
return true;
throw new DicomIoException("Requested {0} bytes past end of fixed length stream.", count);
}
}
当时的Stream的Position位于流末尾,即Length-Position等于0, 因此抛出这个异常。
解决办法很简单:
首先把Stream定位到DICOM的起始位置。
类似代码如下:
var stream = new MemoryStream();
using (var f = File.Open(@"1.2.156.112605.75006881735343.1369658682.4.4.1.dcm", FileMode.Open))
{
f.CopyTo(stream);
}
stream.Seek(0, SeekOrigin.Begin);
var df = Dicom.DicomFile.Open(stream);
- 前言
- HL7 Tools suite
- HL7 Event Type
- HL7 ADT Message Sample
- IHE-PIX 备注
- HL7 V2 分隔符
- 有关HL7 的C# 源码
- Pix mesa 自动化测试
- hl7 V2中Message Control ID的含义及应用
- hl7消息中和时间有关的字段的格式
- hl7中V2版本的ACK消息的构造
- hl7 v2.X 版本中RSP_K23消息的构造
- HL7及PIX相关的测试工具
- HL7 标准及实现指南 必看的网址
- IHE 官方网址有用资源介绍
- PIX v2版本中Query 失败时, ERR段的构造
- AspNet WebApi 中应用fo-dicom抛出异常:No codec registered for tranfer syntax:
- DicomIoException: Requested 132 bytes past end of fixed length stream.