0

I found this example and used it How do you resize a Bitmap under .NET CF 2.0

However my image looks horrible because of anti aliasing. It no longer looks pixelated as it should. How do i disable anti aliasing?

Community
  • 1
  • 1

1 Answers1

2

Set the interpolation mode to nearest neighbor:

g.InterPolationMode = InterpolationMode.NearestNeighbor
Guffa
  • 687,336
  • 108
  • 737
  • 1,005