ImageReadBase64
Was this helpful?
ImageReadBase64( string )string
String
Yes
The base64-encoded string representing the image data.
BoxImage — The image object decoded from the base64 string.
Decodes a base64-encoded string into an image and returns it as a BoxImage object. This BIF is useful for importing images that are stored or transmitted as base64 strings, such as those embedded in data URIs or received from APIs.
// Load an image from a base64 string
img = ImageReadBase64( myBase64String );ImageRead
ImageNew
ImageGetBlob
The string argument must be a non-empty base64-encoded string representing valid image data.
If the image cannot be decoded, an error is thrown.
Returns a BoxImage object for use in other image BIFs.
Was this helpful?
Was this helpful?
