You cannot show an image on the window.
You can check the length of the contacts Name property and see how long it is then you can resize and add "...".
code:
if (name.length > 10 /* change to whatever you want */) name = name.substr(0, 10/* change to whatever you want */) + '...';