A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
Displaying a Black and White .png Image
-
Hello Everyone,
I am new to the magic mirror and just got it running on the monitor I am using. I would like to display a small .png image if possible, wondering if anyone knows how to go about this.
Thank! -
Not sure if it works, but you could try using the
helloworld
module and simply add an HTML tag to display the image:{ module: 'helloworld', position: 'bottom_bar', // This can be any of the regions. config: { text: '<img src="http://url.to.you/image.png" />' } }
A cleaner approach would be building an image module. :)
-
Thanks! I’ll definitely give this a try.