.Net ToolStrip and ImageList - wrong image size

3k Views Asked by At

I have an icon that contains 32-bit images of sizes 16x16, 24x24, and 32x32. I create three ImageList objects that contain the three different size images, and assign the ImageList property on my ToolStrip given what size the user selects. However the images displayed on the ToolStrip objects are all scaled versions of the 32x32 image. I can't figure out why when I create the 16x16 ImageList, for example, that it doesn't extract the 16x16 image from the icon. My code essentially looks like this:

ImageList m_imageList16 = new ImageList();
m_imageList16.ColorDepth = System.Windows.Forms.ColorDepth.Depth32Bit;
m_imageList16.ImageSize = new System.Drawing.Size(16, 16);
m_imageList16.TransparentColor = System.Drawing.Color.Transparent;

// Open is an icon in my resources that contains various sizes of images. 
m_imageList16 .Images.Add(global::MyTestApp.Properties.Resources.Open);

// Later when the user selects the 16 size from a menu, I change the toolbar:
m_toolbar.ImageScalingSize = new Size(16, 16);
m_toolbar.ImageList = m_imageList16;

It seems this just takes the 32x32 size image in my icon and scales it down to 16x16, rather than using the 16x16 image defined in the icon. Can anyone help with this? Thanks in advance for any input!

  • Steve
2

There are 2 best solutions below

3
On

I can't find any evidence to support my theory, but ImageList appears to not be aware of selecting different size icons. My hunch is that it simply converts icons to bitmaps and stores that data.

At MSDN forums, I found this snippet from MVP user nobugz:

I think I can reproduce your problem. When I use MicroAngelo (an icon editor utility) to extract icon #5 from shell32.dll, save it to disk, then add the icon to a 16x16 ImageList, I see a poorly interpolated version of the icon. When I edit the icon and remove all formats except 16x16x256 colors, I get a nice sharp looking version of the icon.

Looks like ImageList isn't smart enough to select the icon that best matches the ImageList's ImageSize and ColorDepth property. It never was a particularly smart control. This doesn't quite match your scenario but the outcome is the same. Seeing a PhysicalDimension of 32x32 hints that something went wrong when you extracted the icon. I see 16x16 on the edited icon but 32x32 on the un-edited icon.

Also, this page from CSharpKey seemed a useful resource working with ImageLists and icons. Here's an excerpt:

If you are creating a list of icons, you can create each with the default size of 16x16. In some cases (for example if you intend to use the images for a list view), you can create or design a second set of icons whose size are 32x32 (and/or 48x48) each.

It seems to be, "reading between the lines" that the ImageList merely stores one size and returns resampled versions of the image stored.

Edit

I found another reference at CodeProject (Embedding Icons in your VB.NET application) that says this:

Well, that seemed like a pretty good solution, until I realized that an ImageList only stores images as bitmaps at a single resolution. So if I have all these great icons in various sizes that I want to use throughout my application, maybe using their different sizes (since icons have multiple sizes stored within their single file), the ImageList wasn't quite going to cut it.

0
On

I filed this bug back in the year 2006, and the Microsoft bug guys responded that they can reproduce the problem, but it is not a critical one, and they are not going to fix it.

I am now using the appropriate pngs instead of multisize icons.