-
I know I can convert a byte array to an image with 'ReadPixels', but how can I convert it back to a byte array?😀 |
Beta Was this translation helpful? Give feedback.
Answered by
dlemstra
Nov 2, 2020
Replies: 1 comment 1 reply
-
You could use |
Beta Was this translation helpful? Give feedback.
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().ToByteArray
for that.