Base 64 encoding is a reliable way to render images and other information in a simple string format without the need for transferring and storing image files. The HMT utilizes this method for supplying configuration options like the Home Screen background image and all images used in the Language Selector.
Many free resources exist online to encode your content, such as www.base64encode.org/. Check any instructions they provide as some formats or encoders will add extra information you may need to clip out before placing in a configuration file for the HMT, such as “data:image/png;base64,[actual base64 string]”; this extra information could interfere with the rendering of the image and instead render nothing at all. Any Base 64 string should not include colons, semicolons, or commas, and only include A-Z, a-z, 0-9, + and / characters. Every Base 64 string is terminated with either one or two equal signs – i.e. = or ==.
Example Steps:
Note: Base 64 does not require the source image to be downloaded to your device or stored in any way except the Base 64 encoded string in your configuration.