Dear All,

I have an image 1200*900 using 300 dpi added as a resource in my project

im using following code

Bitmap pic = new Bitmap(Project1.Properties.Resources.Picture);

Source image resolution is 300 dpi but when i create new Bitmap object it converts its resolution
to 96 dpi. i want it to remain 300 dpi.

i dont want to use setresolution (300f,300f) becuse it zooms in information in the source file

any help