I have strange observation on resource file 'Images.resx' contains all images as'.PNG' designed at 96 dpi.
Build action: Embedded Resource
While Debugging at 120 DPI(125 %)
Bitmap myIcon=Images.Icon;
myIcon Horizontal and vertical resolution as 95.9866
Bitmap myIcon = new Bitmap(Images.Icon);
myIcon Horizontal and vertical resolution as 120
Requirement is to merge Images. Based on whether Image is re-initialized or not Image Scales improperly (on dpi >96). How to fix this behavior ?
System: VisualStudio 2017, Winform