我的应用程序是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;
我的问题是如何将图像放入视图包中以显示在视图中?我会很感激你的建议,并在此先感谢。