You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@Koromix
Hello,
In the electron project, I am trying to read an image data of size 5M, 5 million bytes, which caused this problem
ImageInfo = koffi.struct({
widthUint: 'int8[4]',
heightUint: 'int8[4]',
sizeUint: 'int8[4]',
pixelDataArr: 'int8[5000000]'
});
const myStructInstance = koffi.decode(view, ImageInfo )
The last pixelDataArr has a problem. Trying int8[2048] is normal, but it also reports an error after multiple loops. I don't know where the problem is.Specific error information:
[38500:0925/130855.393:ERROR:crashpad_client_win.cc(844)] not connected
ERROR:crashpad_client_win.cc(844)] not connected
The requested array space is too large, causing problems.
How to deal with it in the electron project?
Block errors? Modify setting parameters?
The text was updated successfully, but these errors were encountered: