拉伸位图无抗锯齿(Stretch Bitmap without anti-aliasing)

2019-09-17 23:48发布

我发现这个例子,并用它你如何调整在.NET CF 2.0位图

但是我的形象看起来是因为抗锯齿的可怕。 因为如果它看起来不再像素化。 如何禁用抗锯齿?

Answer 1:

设置插值模式到最近的邻居:

g.InterPolationMode = InterpolationMode.NearestNeighbor


文章来源: Stretch Bitmap without anti-aliasing