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.
|
|
|
|
|
|
|
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. |
||
|
|
|
|
When resizing an image in .net, the System.Drawing.Drawing2D.InterpolationMode offers the following resize methods:
|
||
|
|
|
|
@Joel: It looks like there's no way to do it with a builtin mode "for free", then, right? |
||
|
|
|
|
@Jared Updike: Right. I just browsed thru the code in Reflector for the PictureBox and there's no way to specify the InterpolationMode. |
||
|
|
