A JSON file stored PNG images in byte[] text format. How do I convert them into PNG?
Page 1 / 1
I'm guessing the byte data type is base64. If that's the case, try...
- BinaryDecoder: Encoding Type=Base64
- RasterExtractor: Format=PNG
I think this article is related, that you can go in reverse: https://knowledge.safe.com/articles/1176/embedding-images-in-html-with-fme.html
A small correction: the RasterExtractor needs to be the RasterReplacer. The two steps explained are correct.