码迷,mamicode.com
首页 > 其他好文 > 详细

DicomIoException: Requested 132 bytes past end of fixed length stream.

时间:2016-02-29 10:43:12      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:

今天在用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, 因此抛出这个异常。


解决的方法非常easy:
首先把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);

DicomIoException: Requested 132 bytes past end of fixed length stream.

标签:

原文地址:http://www.cnblogs.com/bhlsheji/p/5226523.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!