Microsoft MVP성태의 닷넷 이야기
.NET Framework: 123. WPF - Arial Narrow 폰트 문제 [링크 복사], [링크+제목 복사],
조회: 24834
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일
 


WPF - Arial Narrow 폰트 문제


요즘 진행하고 있는 프로젝트에서, 예기치 않은 문제가 발생했습니다.

먼저, Windows Form 응용 프로그램에서의 Arial 폰트와 Arial Narrow 폰트를 비교해 보면,

[그림 1: Arial 폰트 비교 - Windows Form]
wpf_arial_narrow_font_issue_1.PNG

정상적으로 나오는 것을 확인할 수 있습니다. 그런데, WPF에서는 다음과 같이 Narrow로 지정된 모양이 "Bold Italic"으로 적용되어 나오는 것을 볼 수 있습니다.

[그림 2: Arial 폰트 비교 - WPF]
wpf_arial_narrow_font_issue_2.PNG

<Window x:Class="WpfApplication1.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Window1" Height="168" Width="272">
    <Grid>
        <StackPanel>
            <Label FontFamily="Arial" FontSize="18">Arial Normal Font</Label>
            <Label FontFamily="Arial Narrow" FontSize="18">Arial Font Narrow</Label>
        </StackPanel>
    </Grid>
</Window>


WPF 프레임워크 단에서 그런 처리를 해주니 어쩔 수 없는 문제인데, connect 사이트에도 이와 관련된 피드백이 올라와 있습니다.

WPF 피드백 - Font mapper incorrect results with Arial Narrow
; https://connect.microsoft.com/feedback/ViewFeedback.aspx?FeedbackID=343874&SiteID=212

패치 등을 통한 직접적인 해결 방법은 제공되지 않고 있으며, 단지 RenderTransform을 통한 우회 방법만이 "Steve1105"라는 계정을 쓰는 사람에 의해서 제공되고 있습니다.

우회 해결 방법
; https://connect.microsoft.com/feedback/Workaround.aspx?FeedbackID=343874&SiteID=212

위의 WPF 코드를 RenderTransform을 이용하면 다음과 같습니다.

[그림 3: RenderTransform을 이용하여 흉내낸 Arial Narrow 폰트]
wpf_arial_narrow_font_issue_3.PNG

<Window x:Class="WpfApplication1.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Window1" Height="168" Width="272">
    <Grid>
        <StackPanel>
            <Label FontFamily="Arial" FontSize="18">Arial Normal Font</Label>
            <Label FontFamily="Arial" FontSize="18" Content="Arial Narrow Font">
                <Label.RenderTransform>
                    <TransformGroup>
                        <ScaleTransform ScaleX="0.8"/>
                    </TransformGroup>
                </Label.RenderTransform>
            </Label>
        </StackPanel>
    </Grid>
</Window>




[이 토픽에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]







[최초 등록일: ]
[최종 수정일: 4/10/2022]

Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
by SeongTae Jeong, mailto:techsharer at outlook.com

비밀번호

댓글 작성자
 




... 181  182  183  184  [185]  186  187  188  189  190  191  192  193  194  195  ...
NoWriterDateCnt.TitleFile(s)
335정성태8/20/200628373디버깅 기술: 8. COM+ 서버 응용 프로그램에 대한 F5 디버깅 방법
334정성태8/20/200623586디버깅 기술: 7. VS.NET 2003/2005의 다중 프로젝트 디버깅
333정성태8/20/200624062개발 환경 구성: 11. COM+ 서버 활성화 보안 설정
331정성태8/27/200617009개발 환경 구성: 10. 최대 절전 모드와 VPC 네트워크 문제
330정성태8/20/200617295개발 환경 구성: 9. VPC로 구성하는 개인 환경
328정성태8/20/200635035개발 환경 구성: 8. AppVerifier 사용법 [1]
327정성태8/16/200631839개발 환경 구성: 7. ActiveX 서명 과정 자동화 [1]
326정성태8/16/200625576Team Foundation Server: 13. Sysnet 웹 사이트 TFS Migration
322정성태8/15/200620491개발 환경 구성: 6. 4GB 메모리 구성 [1]
316정성태9/20/200639558디버깅 기술: 6. .NET 예외 처리 정리 [6]
309정성태12/27/200640473디버깅 기술: 5. PDB 이야기 [7]
310정성태8/5/200627550    답변글 디버깅 기술: 5.1. PDB 파일에 따른 Debug 정보 - WinForm + Library 유형의 프로젝트파일 다운로드1
311정성태8/10/200627030    답변글 디버깅 기술: 5.2. PDB 파일에 따른 Debug 정보 - .NET 2.0 Web Application Project + Library 유형의 프로젝트
312정성태8/5/200629757    답변글 디버깅 기술: 5.3. PDB 파일에 따른 Debug 정보 - .NET 2.0 Web Site Model 유형의 프로젝트
313정성태8/12/200628878    답변글 디버깅 기술: 5.4. VS.NET 2005 디버그 모드에서의 PDB 파일 사용 차이 (1)
317정성태8/12/200626365    답변글 디버깅 기술: 5.5. VS.NET 2005 디버그 모드에서의 PDB 파일 사용 차이 (2)
318정성태8/12/200632794    답변글 디버깅 기술: 5.6. VS.NET 2005를 이용한 미니덤프 파일 분석 (1)
319정성태8/12/200627795    답변글 디버깅 기술: 5.7. VS.NET 2005를 이용한 미니덤프 파일 분석 (2) [1]
320정성태8/12/200631929    답변글 디버깅 기술: 5.8. WinDBG를 이용한 미니덤프 파일 분석 [1]
321정성태8/13/200636335    답변글 디버깅 기술: 5.9. Microsoft의 PDB 파일 관리
323정성태8/15/200637772    답변글 디버깅 기술: 5.10. Symbol Server 생성 [4]
324정성태8/15/200634604    답변글 디버깅 기술: 5.11. PDB 파일과 소스 코드
325정성태9/8/200627287    답변글 디버깅 기술: 5.12. CCP를 이용한 Windows Source Code 수준의 디버깅
329정성태8/19/200626298    답변글 디버깅 기술: 5.13. 소스 서버 구성 [1]
332정성태8/20/200627766    답변글 디버깅 기술: 5.14. GAC 에 등록된 Assembly 디버그 [2]
341정성태9/16/200620134    답변글 디버깅 기술: 5.15. [내용 예약]
... 181  182  183  184  [185]  186  187  188  189  190  191  192  193  194  195  ...