티스토리 뷰

 int nFontSize = 10;  // 일반적인 폰트 크기(비논리좌표크기)

/ to 논리크기로
LOGFONT::lfHeight = 
         -MulDiv(nFontSize, GetDeviceCaps(pDC,LOGPIXELSY),72);

// to 일반크기(비논리크기)
nFontSize = 
        -((LOGFONT::lfHeight * 72) / GetDeviceCaps(pDC, LOGPIXELSY));
 

댓글