I found this example and used it http://stackoverflow.com/questions/1082884/how-do-you-resize-a-bitmap-under-net-cf-2-0/1082890#1082890

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

link|improve this question

74% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Set the interpolation mode to nearest neighbor:

g.InterPolationMode = InterpolationMode.NearestNeighbor
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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