quackgyver The answer to your question is yes. Base64 is a decoding system.
For base 64 encoding use: window.btoa(). The value goes inside the (), as a string or data.
To remove the encoding use: window.atob() The value goes inside the (), like a string or data.
Here's the API reference: developer.mozilla.org/en-US/docs/Glossary/Base64
Example: window.btoa("text") // encoding "text" to base64.
Question link: construct.net/en/forum/construct-3/scripting-51/convert-image-base64-163038