Icon full quality issue
-
How can you convert an icon to a bitmap without losing all of its quality. So .ToBitmap loses its alpha channel. What is the solution? http://www.nico.gotdns.com
-
How can you convert an icon to a bitmap without losing all of its quality. So .ToBitmap loses its alpha channel. What is the solution? http://www.nico.gotdns.com
Bitmaps don't support an alpha channel natively. Usually when a bitmap is drawn "transparently" it uses what's called a bitmask (or mask for short). Alternatively, you could try another format like GIF, PNG, TIFF, etc. that do support an alpha channel. Jeremy Falcon Imputek
-
Bitmaps don't support an alpha channel natively. Usually when a bitmap is drawn "transparently" it uses what's called a bitmask (or mask for short). Alternatively, you could try another format like GIF, PNG, TIFF, etc. that do support an alpha channel. Jeremy Falcon Imputek
-
Bitmaps don't support an alpha channel natively. Usually when a bitmap is drawn "transparently" it uses what's called a bitmask (or mask for short). Alternatively, you could try another format like GIF, PNG, TIFF, etc. that do support an alpha channel. Jeremy Falcon Imputek
How do you do this then?? http://www.nico.gotdns.com