Workaround for the ImageList transparency bug? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T09:15:26Z http://stackoverflow.com/feeds/question/617405 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/617405/workaround-for-the-imagelist-transparency-bug 0 Workaround for the ImageList transparency bug? orj 2009-03-06T01:13:48Z 2009-03-06T03:42:50Z <p>If you add an PNG image to an ImageList control and use that ImageList with a ListView or TreeView in a Windows Forms (.Net 2.) application the icons shown in the ListView have a blue "halo" around them.</p> <p>Eg:</p> <p><img src="http://deeperdesign.wordpress.com/files/2009/03/blue-halo.png" alt="alt text" /></p> <p>Does anyone know a work around that allows you to add 32bit PNGs with an Alpha channel to an ImageList and retain the transparent pixels and avoid the halo effect/bug?</p> <p>Thanks.</p> http://stackoverflow.com/questions/617405/workaround-for-the-imagelist-transparency-bug/617525#617525 1 Answer by Snarfblam for Workaround for the ImageList transparency bug? Snarfblam 2009-03-06T02:24:11Z 2009-03-06T02:24:11Z <p>I don't think that this is a bug. You should have the ImageList color depth set to 32-bit, and you need to be using visual styles.</p> <p>If the application has visual styles enabled, WinForms uses version 6.0 of Windows common controls, which supports alpha transparency. Otherwise it will use the previous version which does not support alpha-transparency, and incorrectly renders ARGB images with a blue halo.</p> <p>If you need a workaround, you could try creating new bitmaps the same size, filling them with the BackColor of the ListView, creating a Graphics object on the bitmap, and drawing your ARGB image onto the bitmap. Then you can insert these pre-blened bitmaps into the ImageList. If you do this, however, the selection will look funny on the icon in the ListView.</p> <p>Another work-around would be to directly access the bitmap data (using LockBits()) and manually blend any semi-transparent pixels, which will cause the images to be rendered properly and look pretty much the way they should when selected.</p> http://stackoverflow.com/questions/617405/workaround-for-the-imagelist-transparency-bug/617619#617619 0 Answer by nobugz for Workaround for the ImageList transparency bug? nobugz 2009-03-06T03:33:46Z 2009-03-06T03:33:46Z <p>It is probably an artifact, created when Windows needs to interpolate the bitmap to rescale it to fit the size of the ImageList. It probably uses bi-cubic interpolation, causing the color value of the transparent pixels to be used. Drawing the bitmap at the exact size of the ImageList should solve it. Or making the color value of the transparent pixels white.</p>