PDF OLE 객체를 슬라이드에 추가
2310 단어 csharpprogrammingoleproductivity
string filePath = @"c:\sample.ppt";
string filePathEmbedded = @"c:\embedded.pdf";
string filePathOut = @"c:\output\result.ppt";
int pageNumber = 2;
OlePresentationOptions olePresentationOptions = new OlePresentationOptions(filePathEmbedded, pageNumber);
olePresentationOptions.X = 10;
olePresentationOptions.Y = 10;
using (Merger merger = new Merger(filePath))
{
merger.ImportDocument(olePresentationOptions);
merger.Save(filePathOut);
}
네가 해야 할 일은 그룹Docs를 추가하는 것이다.병합NETAPI(새 문서 또는 기존) 문서에서 참조합니다.NET 프로젝트, API에 포함할 PDF 파일과 소스 PPT/PPTX 파일을 API에 전달합니다.
Reference
이 문제에 관하여(PDF OLE 객체를 슬라이드에 추가), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/atir_tahir/add-pdf-ole-object-into-a-slide-3hl5텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)