将 array^ 数据转换为 const byte* 数据 - C++/CLR

发布于 2024-08-20 12:23:38 字数 989 浏览 4 评论 0原文

我试图从 C# 调用 C 中的函数,尽管 C ++

所以基本上是 C# -> C++ - >C

在 C# 中,我有 byte[] 字节 - 它从文件中读取信息。我将字节数组和大小传递给 C++ 。

在 C++ 中,我得到字节数组和大小,但无法转换为特定的数据类型。

void Image::OpenMemFile(array<Byte>^ data, unsigned int size)
{

    Free();
    m_dataStream = data;
    Byte const* streamData = &data[0];   // this is where it throws error 
         // Should I use marshaling here ? What call should that ;be ?
         hImage = ::OpenMemImage(streamData ,&nbsp;size);
    modified = false;
}

// this is the function I&nbsp;need to call 
EXIVSIMPLE_API HIMAGE OpenMemImage(const&nbsp;BYTE *data, unsigned int size)
{
   // code
        imgWrap->image = Exiv2::ImageFactory::open(data, size);

}

它需要调用的 C 函数是

Image::AutoPtr ImageFactory::open(const byte* data, long size)
    {
      /// code
    }

我需要帮助将字节数组转换为 const byte* 。我意识到我需要使用封送处理。 C++ 中是否有特定的函数来编组数组?

任何帮助表示赞赏。

谢谢

I am trying to call a function in C from C# though c ++

so basically C# -> C++ - >C

In C#, I have byte[] bytes - which reads the information from the file. I am passing the byte array and the size to C++ .

In C++ I get the byte array and the size but I am not able to convert to the specific data types.

void Image::OpenMemFile(array<Byte>^ data, unsigned int size)
{

    Free();
    m_dataStream = data;
    Byte const* streamData = &data[0];   // this is where it throws error 
         // Should I use marshaling here ? What call should that ;be ?
         hImage = ::OpenMemImage(streamData , size);
    modified = false;
}

// this is the function I need to call 
EXIVSIMPLE_API HIMAGE OpenMemImage(const BYTE *data, unsigned int size)
{
   // code
        imgWrap->image = Exiv2::ImageFactory::open(data, size);

}

the C function it needs to call is

Image::AutoPtr ImageFactory::open(const byte* data, long size)
    {
      /// code
    }

I need to help in converting the byte array to const byte* . I realize I need to use Marshaling. Is there a specific function to marshal arrays in C++ ?

Any help is appreciated.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

寂寞清仓 2024-08-27 12:23:38
pin_ptr<unsigned char> pin_buffer = &data[0];
unsigned char* pData = pin_buffer;
pin_ptr<unsigned char> pin_buffer = &data[0];
unsigned char* pData = pin_buffer;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文