我正在使用 Wpf c# 并在托管 c++ 中使用依赖项项目。我必须从 dicom 文件创建一个位图。我得到“没有足够的存储空间来处理这个命令”异常CreateBitmapSourceFromMemorySection
这段代码是这样的:
bmpsou = safe_cast<InteropBitmap^>(System::Windows::Interop::Imaging::CreateBitmapSourceFromMemorySection(
IntPtr(section), di->getWidth(), di->getHeight(), PixelFormats::Bgr32,di->getWidth() * 4, 0 )) ;
您能否提出解决此问题的任何解决方案