在IOS中将ObjC / C ++中的字节数组封送到C#的麻烦

时间:2011-06-26 17:50:49

标签: c++ arrays ios xamarin.ios marshalling

**这仍未解决**

我正在尝试从C#调用ObjC / C ++函数代码。我已尽力遵循不同的示例代码,最新的代码主要来自:

http://msdn.microsoft.com/en-us/library/ms146631(v=VS.80).aspx

这适用于iPhone / MonoTouch环境,所以我不确定我是否已经做了我应该做的一切。 ObjC / C ++函数中的字节似乎没问题,但是我回到C#的字节数组最终包含0 0 0 0 0 0等。

**更新**

修正了循环初始化程序,现在它在* returnbytes [i] = bytes [i]上给出一个EXC_BAD_ACCESS信号;线。

C#代码:

[DllImport ("__Internal")]
private static extern int _getjpeg(string url,ref IntPtr thebytes); 

void somefunction(string image_id) {
    int maxsize = 50000;

    byte[] thebytes = new byte[maxsize];
    IntPtr byteptr = Marshal.AllocHGlobal(maxsize);

    int imagesize = _getjpeg(image_id,ref byteptr);

    Debug.Log("Getting _picturesize()... "+ image_id);
    int picsize = _picturesize(); 

    Marshal.Copy(byteptr,thebytes,0,picsize);   

    var texture = new Texture2D(1,1);

    string bytedebug = "";
    for (int i=5000 ; i < 5020 ; i++)
        bytedebug+=thebytes[i] + " ";

    Debug.Log("Bytes length is "+imagesize);
    Debug.Log("Bytes content is "+bytedebug);
}

C ++ / ObjC代码:

int _getjpeg(const char* url,unsigned char** returnbytes) {

    ALAsset* asset = [_pictures objectForKey:[NSString stringWithUTF8String:url]];

    if(asset != NULL)
        NSLog(@"_getjpeg() found URL: %@",[NSString stringWithUTF8String: url]);
    else {
        NSLog(@"_getjpeg() could not find URL: %@",[NSString stringWithUTF8String: url]);
        return NULL;
    }

    UIImage *image = [UIImage imageWithCGImage: [asset thumbnail]];
    NSData* pictureData =  UIImageJPEGRepresentation (image, 1.0);

    picturesize = (int)[pictureData length];

    unsigned char* bytes = (unsigned char*)[pictureData bytes];

    // This test does not give EXC_BAD_ACCESS
    *returnbytes[5] = (unsigned int)3;

    // updated below initializer in below for loop according to Eikos suggestion
    for(int i=0 ; i < picturesize ; i++) {
        // below lines gives EXC_BAD_ACCESS
        *returnbytes[i] = bytes[i];            
    }

    NSString* debugstr  = [NSString string];

    for(int i=5000; i < 5020 ; i++) {
        unsigned char byteint = bytes[i];
        debugstr = [debugstr stringByAppendingString:[NSString stringWithFormat:@"%i ",byteint]];

    }


    NSLog(@"bytes %s",[debugstr UTF8String]);
    return picturesize;
}

由于

2 个答案:

答案 0 :(得分:1)

请注意,JPGRepresentation可能与您输入的内容不完全相同,因此长度可能会有所不同。

for(int i;i < picturesize;i++) {
    // *** Not sure I'm doing this correctly ***
    *returnbytes[i] = bytes[i];            
}

您忘记初始化i,因此它可能以大于picturesize的随机值开头,因此循环根本不会运行。

答案 1 :(得分:0)

您需要unsigned char*,而不是**。您正在传递已分配的指针。 **用于传递指向变量的指针,该变量本身是指向数据的指针:即,当被调用者分配内存并且调用者想知道它时。

只需传入unsigned char *,然后使用

returnbytes[i] = bytes[i];

或者,在calee中分配并使用out而不是ref。