19,471
社区成员




//GetDeviceCaps
//LOGPIXELSX Number of pixels per logical inch along the screen width
//LOGPIXELSY Number of pixels per logical inch along the screen height
int cx = (int)( GetDeviceCaps(hDC, LOGPIXELSX) * 100.0/2.54);
int cy = (int)( GetDeviceCaps(hDC, LOGPIXELSY) * 100.0/2.54);