[C#/WPF] PowerPoint 를 PDF로 바꾸기


[C#/WPF] PowerPoint 를 PDF로 바꾸기

PowerPoint 파일의 경로를 이용하여 PDF파일로 바꾸는 예제입니다. 사용하는 참조 (Microsoft.Office.Interop.PowerPoint) 사용하는 참조 (Office) // 아래의 using 문을 사용합니다. using Microsoft.Office.Interop.PowerPoint; // Max Page limit 정보를 세팅합니다. public static int MaxPageCount = 500; // Return Value를 위한 enum을 세팅합니다. public enum RET_VAL { Pass = 0, OverPage, Fail } /// /// 파워포인트 파일을 PDF파일로 변환합니다. /// /// ppt file path /// pdf file path ..


원문링크 : [C#/WPF] PowerPoint 를 PDF로 바꾸기