|
I know I can convert a byte array to an image with 'ReadPixels', but how can I convert it back to a byte array?😀 |
Answered by
dlemstra
Nov 2, 2020
Replies: 1 comment 1 reply
|
You could use |
1 reply
Answer selected by
Cyl18
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You could use
image.GetPixels().ToByteArrayfor that.