vote up 0 vote down star

I am using StretchImage because the box is resizable with splitters. It looks like the default is some kind of smooth bilinear filtering, causing my image to be blurry and have moire patterns.

flag

4 Answers

vote up 4 vote down check

I suspect you're going to have to do the resizing manually thru the Image class and DrawImage function and respond to the resize events on the PictureBox.

link|flag
vote up 1 vote down

When resizing an image in .net, the System.Drawing.Drawing2D.InterpolationMode offers the following resize methods:

  • Bicubic
  • Bilinear
  • High
  • HighQualityBicubic
  • HighQualityBilinear
  • Low
  • NearestNeighbor
  • Default
link|flag
vote up 0 vote down

@Joel:

It looks like there's no way to do it with a builtin mode "for free", then, right?

link|flag
vote up 1 vote down

@Jared Updike: Right. I just browsed thru the code in Reflector for the PictureBox and there's no way to specify the InterpolationMode.

link|flag

Your Answer

Get an OpenID
or

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