Looking for the least painful way to grab a Bitmap and translate every pixel of a specific color to transparent.
In particular, I have set all the pixels I want to be transparent to 0xFF00FF, but I am not seeing any native method that do this.
Do I have to actually loop through all the pixels comparing values? And if so, can I change them in place or do I need to make a new bitmap array and create a new bitmap?