标签: c# gdi+
我需要将System.Drawing.Bitmap对象的DPI从默认值= 96更改为例如150.我找不到答案如何做,所以我在这里问:)
答案 0 :(得分:35)
Bitmap result = new Bitmap(width, height); result.SetResolution(dpi, dpi);