How can I convert byte data stored as if they were signed bytes to unsigned bytes?
The reason being is because I have some old sound files (from an Amiga), but they were stored in IFF 8SVX which used signed bytes.
Here's how:
public void convertSignedToUnsignedBytes(byte[] b) { for (int i = 0; i < b.Length; i++) { if (b[i] >= 128) b[i] -= 128; else b[i] += 128; } }
If you're starting with sbyte[] signedBytes then try this:
sbyte[] signedBytes
byte[] unsignedBytes = signedBytes.Select(sb => (byte)sb).ToArray();
Copyright © 2021 Jogjafile Inc.
Here's how: