728x90
반응형
파워포인터 파일 다른이름으로 저장
728x90
procedure Tfrm_Main.button_ppt_openClick(Sender: TObject);
var
msppt:variant; //PowerPoint Application 변수
mspps:variant; //PowerPoint Presentation 변수
mspps_slides_totalcount:integer; // PowerPoint Slides Total count 변수
begin
msppt:=CreateOleObject('Powerpoint.Application');
msppt.visible:=true;
msppt.WindowState:=ppWindowMinimized;
mspps:=msppt.Presentations.open('c:\bbbb.ppt',0,-1,-1);
mspps.SaveAs('c:\a',$00000012,true);
// C: 디렉토리에 a라는 폴더안에 슬라이드 단위별로 이미지 저장
//$00000012 PNG 파일로 저장
//$00000011 이나 $00000010 으로 바꾸어 하면 gif,bmp,jpg로 저장가능
mspps_slides_totalcount:=mspps.slides.count;
//파워포인터 슬라이드 총갯수
msppt.quit;
end;
728x90
반응형
'Delphi Tip > 파일' 카테고리의 다른 글
내 실행파일 정보보기 (0) | 2024.05.23 |
---|---|
디렉토리 삭제 및 하위 디렉토리 파일 삭제 (0) | 2024.03.12 |
프로그램에 사용 DLL 목록 가져오기 (0) | 2024.03.06 |
델파이 TcxDBTreeList 엑셀변환 (0) | 2024.01.05 |
인터넷 URL 문서 저장하기 (0) | 2024.01.03 |
댓글