Imaging and DPI

  • Thread starter Thread starter Charles Teel
  • Start date Start date
C

Charles Teel

I'm working on a project where I need to be able to adjust the DPI of
either a Bitmap, Image, or Graphics object. So far I can't find
anything that will get it off of the standard 96 DPI.

Surely there's a way to modify one of these objects to different DPIs
(something like the full framework's Bitmap.SetResolution() method).

Am I just missing it?
 
You're not missing it, SetResolution is not supported on the compact
framework. The DPI is related to the device capabilities. In order to create
higher DPI > 96, the device application must run in HIDPI which is contrained
by the device.
 
Back
Top