1

我的应用程序是asp.net MVC3;目前我可以使用图像处理程序显示 DCIOM MPR 图像并使用以下方法将图像存储在会话中:

objImage = im.Bitmap(outputSize, System.Drawing.Imaging.PixelFormat.Format24bppRgb, m);
context.Response.ContentType = "image/png";
objImage.Save(context.Response.OutputStream,     
System.Drawing.Imaging.ImageFormat.Png);

它工作正常,但是当我旋转图像时,响应非常慢!!我正在尝试使用以下命令将 DICOM MPR 作为会话变量存储在控制器中:

............
DicomImageMPR mpr1 = new DicomImageMPR(volume);
mpr1.SetViewPlane(new Point3D(), new Vector3D(0, 1, 0), new Vector3D(0, 0, -1));
mpr1.Interpolation = InterpolationType3D.Trilinear;
MySession.Current.mpr1 = mpr1;

我的问题是如何将图像放入视图包中以显示在视图中?我会很感激你的建议,并在此先感谢。

4

1 回答 1

3

我通过使用以下方法解决了它:

       public ActionResult GenerateImage()
            {
                FileContentResult result;
                System.Drawing.Image objImage = null;
              ....
                mpr = MySession.Current.mpr2;
                im = mpr;
               ...
                objImage = im.Bitmap(outputSize,  
                System.Drawing.Imaging.PixelFormat.Format24bppRgb, m);
                using (var memStream = new MemoryStream())
                {
                    objImage.Save(memStream, System.Drawing.Imaging.ImageFormat.Png);
                    result = this.File(memStream.GetBuffer(), "image/png");
                }

                return result;
            }

在视图中:

<img src='<%=Url.Action("GenerateImage")%>' alt="" id="dImage"/>

希望这可以帮助某人。

于 2013-04-16T17:34:43.240 回答