성태의 닷넷 이야기
홈 주인
모아 놓은 자료
프로그래밍
질문/답변
사용자 관리
사용자
메뉴
아티클
외부 아티클
유용한 코드
온라인 기능
MathJax 입력기
최근 덧글
[정성태] VT sequences to "CONOUT$" vs. STD_O...
[정성태] NetCoreDbg is a managed code debugg...
[정성태] Evaluating tail call elimination in...
[정성태] What’s new in System.Text.Json in ....
[정성태] What's new in .NET 9: Cryptography ...
[정성태] 아... 제시해 주신 "https://akrzemi1.wordp...
[정성태] 다시 질문을 정리할 필요가 있을 것 같습니다. 제가 본문에...
[이승준] 완전히 잘못 짚었습니다. 댓글 지우고 싶네요. 검색을 해보...
[정성태] 우선 답글 감사합니다. ^^ 그런데, 사실 저 예제는 (g...
[이승준] 수정이 안되어서... byteArray는 BYTE* 타입입니다...
글쓰기
제목
이름
암호
전자우편
HTML
홈페이지
유형
제니퍼 .NET
닷넷
COM 개체 관련
스크립트
VC++
VS.NET IDE
Windows
Team Foundation Server
디버깅 기술
오류 유형
개발 환경 구성
웹
기타
Linux
Java
DDK
Math
Phone
Graphics
사물인터넷
부모글 보이기/감추기
내용
<div style='display: inline'> <h1 style='font-family: Malgun Gothic, Consolas; font-size: 20pt; color: #006699; text-align: center; font-weight: bold'>pptfont.exe - PPT 파일에 숨겨진 폰트 설정을 일괄 삭제</h1> <p> 지인으로부터, PPT 관련 작업 중 불편한 점이 있다는 고충을 들었습니다. 가령 다음과 같은 식으로 폰트가 포함되어 있긴 한데,<br /> <br /> <img alt='ppt_font_1.jpg' src='/SysWebRes/bbs/ppt_font_1.jpg' /><br /> <br /> 이런 식으로 사용 중인 폰트를 삭제하려고 일일이 모든 PPT 슬라이드에 들어가 텍스트 박스 영역을 선택해 들어가는 것이,<br /> <br /> <img alt='ppt_font_2.jpg' src='/SysWebRes/bbs/ppt_font_2.jpg' /><br /> <br /> 너무 불편하다는 점입니다.<br /> <br /> <hr style='width: 50%' /><br /> <br /> 이것을 해결하려면, PPT DOM 개체를 다룰 수 있는 라이브러리가 필요합니다. 검색해 보면,<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > Create, read and edit PowerPoint slides in C# ; <a target='tab' href='https://www.syncfusion.com/kb/10942/create-read-and-edit-powerpoint-slides-in-c'>https://www.syncfusion.com/kb/10942/create-read-and-edit-powerpoint-slides-in-c</a> </pre> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > install-package Syncfusion.Presentation.WinForms </pre> <br /> 아쉽게도 숨겨진 폰트를 나열해주는 정도의 레벨까지는 기능 제공을 하지 않고 있습니다. 그렇다면 다른 라이브러리를 검색해 볼 수 있는데, 아무래도 저런 기능까지 제공하는 것은 찾기 힘들 것 같습니다.<br /> <br /> 자... 그럼 어쩔 수 없군요, 어차피 pptx 파일은 zip 파일로써 내부는 xml 형식으로 표현하고 있기 때문에 차라리 순수 XML을 다루는 방식으로 접근하는 것이 더 나을 듯합니다. 즉, 다음과 같은 절차로 처리해 보는 것입니다.<br /> <br /> <ol> <li>pptx 파일의 압축을 풀고,</li> <li>풀린 xml 파일들에서 특정 폰트 이름을 가진 노드를 찾아 삭제하고,</li> <li>다시 pptx 파일로 압축</li> </ol> <br /> 간단하죠? ^^ 그래서 pptfont.exe를 만들어봤고,<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > stjeong/Utilities ; <a target='tab' href='https://github.com/stjeong/Utilities/tree/master/pptfont'>https://github.com/stjeong/Utilities/tree/master/pptfont</a> 다운로드 (.NET Framework 4.5 이상 필요) ; <a target='tab' href='https://github.com/stjeong/Utilities/blob/master/Binaries/pptfont.zip'>https://github.com/stjeong/Utilities/blob/master/Binaries/pptfont.zip</a> </pre> <br /> 다음과 같은 식으로 사용할 수 있습니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > C:\temp> <span style='color: blue; font-weight: bold'>pptfont.exe list test.pptx</span> 맑은 고딕 Arial Aharoni 애터미 Bold C:\temp> <span style='color: blue; font-weight: bold'>pptfont.exe remove test.pptx Aharoni</span> Reanmed old file "test.pptx" to C:\temp\test.bak test.pptx: Removed "Aharoni" C:\temp> <span style='color: blue; font-weight: bold'>pptfont.exe list test.pptx</span> 맑은 고딕 Arial 애터미 Bold </pre> </p><br /> <br /><hr /><span style='color: Maroon'>[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]</span> </div>
첨부파일
스팸 방지용 인증 번호
1183
(왼쪽의 숫자를 입력해야 합니다.)