vote up 1 vote down star

I'm attempting to display a "LargeIcon" view in a listview control, however the images I specify are blurry. This is what I have so far: alt text

The .png files are 48x48 and that's what I have it set to display at in the ImageList properties. There's one thing that I've noticed (which is probably the cause) but I don't know how to change it. Inside the "Images Collection Editor" where you choose what images you want for the ImageList control, it looks like it's setting the wrong size for each image. alt text

As you can see the "PhysicalDimension" and the "Size" is set to 16x16 and not abled to be manipulated. Does anyone have any ideas? Many thanks!

flag

71% accept rate

3 Answers

vote up 1 vote down check

When adding a .PNG Icon format size the editor tends to pick the first entry size in that file, so it picks up the 16x16 entry and it's stretching that out. That's why you see the 16x16 in the properties there. As suggested, the support for PNG is poor, I'm often found myself rolling over to another format as well to avoid this.

You can open the file in Paint.Net if you need a free editor or something more fully featured like Photoshop or Fireworks and extract the exact size you want.

link|flag
PNG does not (as far as I know and could find on the internet) support more than one image size per file. So this answer is not correct (please feel free to prove me wrong though and I'll remove my -1 vote) – Isak Savo Oct 21 '08 at 12:34
I believe you're thinking of ICO... :-( – MiffTheFox May 19 at 14:05
To clarify, Icons used in Vista and Up are PNG compressed in an ICO container, the editor picks up the wrong image stored inside the ICO, which is a PNG compressed image (chosen because it supports loss-less compression and alpha). So yes you are adding a .ico file, but it's a png image you're looking at. And, due to the compression, isn't identified correctly by all things...as in this case, the wrong (default: minimal-> 16x16) size is used, resulting in a stretched/blurred image. – Nick Craver May 20 at 15:15
vote up 1 vote down

I'm not sure if its the problem in this specific case, but Microsoft support for the PNG format is generally poor. Try adding the images in .bmp format and they should display fine.

link|flag
1  
but .bmp has no transparency, right? – Cornel Jan 29 at 8:34
vote up 4 vote down

Be sure to set ImageList.ImageSize to 48 x 48 too.

HTH, Kent

link|flag
I have that both set in the designer tool and then manually set in code: this.m_LargeImageList.ImageSize = new System.Drawing.Size(48, 48); And still no differnece :( – Balk Sep 21 '08 at 18:11
Re-add images after setting that field. The images get stored in the resx if I recall. – Nick Sep 21 '08 at 18:18

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.