Need help displaying a jpg in Dashboard 2. Assume noob level

If you search with the tag dashboard-2 it will narrow your search and you might stumble on one of these:

show us what you get from the camera.

If it is a buffer object, you probably want to convert it to base64 before using either of the 2 linked solutions (there is a contrib node or you can use a function node)

msg.payload = msg.payload.toString('base64');
return msg
1 Like