Implementing a Flux node that performs Base64 encoding of images #673
Labels
New Feature
A new addition, whose complexity hasn't been evaluated yet
wontfix
This will not be worked on.
Is your feature request related to a problem? Please describe.
Currently, there are only a limited number of ways to send image data externally, and all of them are labor-intensive and time-consuming.
I believe that being able to send image data externally at high speed will greatly expand the possibilities of Resonite.
Describe the solution you'd like
Implement a node to encode images in Base64.
It takes an ITexture2D as input and outputs a String.
It is preferable to use a format that outputs when a trigger is received.
Describe alternatives you've considered
There are two commonly used methods.
・Save the image and send the recording URL externally
・Use sampleColor to obtain color information for each pixel and summarize it into a string
The first method requires the user to save the image. The second method is too time consuming
Additional Context
No response
The text was updated successfully, but these errors were encountered: