I search Internet and get several images download. Then use the below to add them on StatusStripItems of Powershell Form as below:
$statusstrip1.Items.Add('Text', [System.Drawing.Image]::FromFile('c:\image.png'))
I found the images show poor quality. Is it the issue of image size? If so, what is the right pixel size? Thanks.