2

我一直在与佳能 EDSDK 斗争一段时间。我可以成功地让库将文件直接保存到磁盘,但是,我无法在内存中保存图像字节 []。每当我尝试将 EDSDK Stream Marshal.Copy() 复制到字节 [] 时,我总是收到以下错误:

AccessViolationException:试图读取或写入受保护的内存。这通常表明其他内存已损坏。

以下是我用来尝试获取流的代码变体之一:

        private uint downloadImage(IntPtr directoryItem)
        {
            uint err = EDSDK.EDS_ERR_OK;
            IntPtr stream = IntPtr.Zero;

            // Get information of the directory item.
            EDSDK.EdsDirectoryItemInfo dirItemInfo;
            err = EDSDK.EdsGetDirectoryItemInfo(directoryItem, out dirItemInfo);

            // Create a file stream for receiving image.
            if (err == EDSDK.EDS_ERR_OK)
            {
                err = EDSDK.EdsCreateMemoryStream(dirItemInfo.Size, out stream);
            }

            //  Fill the stream with the resulting image
            if (err == EDSDK.EDS_ERR_OK)
            {
                err = EDSDK.EdsDownload(directoryItem, dirItemInfo.Size, stream);
            }

            //  Copy the stream to a byte[] and 
            if (err == EDSDK.EDS_ERR_OK)
            {
                byte[] buffer = new byte[dirItemInfo.Size];

                GCHandle gcHandle = GCHandle.Alloc(buffer, GCHandleType.Pinned);
                // The following line is where it blows up...
                Marshal.Copy(stream, buffer, 0, (int)dirItemInfo.Size);

                // ... Image manipulation, show user, whatever
            }

            return err;
        }

断点显示(通过 EdsDirectoryItemInfo 对象)图像确实存在,我只是不知道为什么我会得到我的例外。我一直在玩弄接受失败的想法,只是从磁盘读取结果图像,它很容易通过 CreateFileStream 方法写入,但我真的应该能够在内存中操作图像。

有任何想法吗?

更新:我在 2.5 和 2.6 版本中都看到了这种行为。

4

2 回答 2

4

我刚刚搜索EdsCreateMemoryStream找到了一个示例,其中还有另一个调用从“内存流”获取指针。

IntPtr pointerToBytes;
EDSDKLib.EDSDK.EdsGetPointer(stream, out pointerToBytes);

然后,您可以将其pointerToBytes用作从 in 读取的源Marshal.Copy

所以我猜你目前正在做的是试图从 指向的一些小控制结构的地址开始复制大量字节stream,因此你正在阅读该结构的末尾。

编辑:顺便说一句,你的代码看起来好像有人告诉你你应该只有一个 return 语句!这是与 Fortran 和 C 等语言有关的旧建议;这在现代语言中没有意义。如果每次出现故障时立即返回错误代码,您的代码会更清晰(至少在这种情况下):

if ((err = EDSDK.EdsBlahBlah(...)) != EDSDK.EDS_ERR_OK)
    return err;

(更好的是,抛出一个特定的异常类,其中包含错误代码和一个解释你试图做什么的字符串。)

于 2009-07-05T08:34:44.740 回答
4

我意识到这是一篇旧文章,但这是一个完整的 C# 片段,用于从内存流中下载。它可能对其他人有用。摄像头需要设置为 EDSDK.EdsSaveTo.Host 或 EDSDK.EdsSaveTo.Both

        uint error = EDSDK.EDS_ERR_OK;
        IntPtr stream = IntPtr.Zero;

        EDSDK.EdsDirectoryItemInfo directoryItemInfo;

        error = EDSDK.EdsGetDirectoryItemInfo(this.DirectoryItem, out directoryItemInfo);

        //create a file stream to accept the image
        if (error == EDSDK.EDS_ERR_OK)
        {
            error = EDSDK.EdsCreateMemoryStream(directoryItemInfo.Size, out stream);
        }


        //down load image
        if (error == EDSDK.EDS_ERR_OK)
        {
            error = EDSDK.EdsDownload(this.DirectoryItem, directoryItemInfo.Size, stream);
        }

        //complete download
        if (error == EDSDK.EDS_ERR_OK)
        {
            error = EDSDK.EdsDownloadComplete(this.DirectoryItem);
        }


        //convert to memory stream
        IntPtr pointer; //pointer to image stream
        EDSDK.EdsGetPointer(stream, out pointer);

        uint length = 0;
        EDSDK.EdsGetLength(stream, out length);

        byte[] bytes = new byte[length];

        //Move from unmanaged to managed code.
        Marshal.Copy(pointer, bytes, 0, bytes.Length);

        System.IO.MemoryStream memoryStream = new System.IO.MemoryStream(bytes);
        Image image = System.Drawing.Image.FromStream(memoryStream);

        if (pointer != IntPtr.Zero)
        {
            EDSDK.EdsRelease(pointer);
            pointer = IntPtr.Zero;
        }


        if (this.DirectoryItem != IntPtr.Zero)
        {
            EDSDK.EdsRelease(this.DirectoryItem);
            this.DirectoryItem = IntPtr.Zero;
        }

        if (stream != IntPtr.Zero)
        {
            EDSDK.EdsRelease(stream);
            stream = IntPtr.Zero;
        }
于 2012-09-27T00:49:46.077 回答