PDF 문서에 첨부 파일 추가
Contents
[
Hide
]
첨부 파일에는 다양한 정보가 포함될 수 있으며, 다양한 파일 유형이 있을 수 있습니다. 이 문서는 PDF 파일에 첨부 파일을 추가하는 방법을 설명합니다.
다음 코드 스니펫은 새로운 그래픽 Aspose.Drawing 인터페이스에서도 작동합니다.
- 새 C# 프로젝트를 생성합니다.
- Aspose.PDF DLL에 대한 참조를 추가합니다.
- Document 객체를 생성합니다.
- 추가하는 파일과 파일 설명이 포함된 FileSpecification 객체를 생성합니다.
- FileSpecification 객체를 Document 객체의 EmbeddedFiles 컬렉션에 추가 메소드를 사용하여 추가합니다.
EmbeddedFiles 컬렉션에는 PDF 파일의 모든 첨부 파일이 포함되어 있습니다. EmbeddedFiles 컬렉션은 PDF 파일의 모든 첨부 파일을 포함하고 있습니다.
// 완전한 예제와 데이터 파일은 https://github.com/aspose-pdf/Aspose.PDF-for-.NET 에서 확인해 주세요.
// 문서 디렉토리의 경로입니다.
string dataDir = RunExamples.GetDataDir_AsposePdf_Attachments();
// 문서 열기
Document pdfDocument = new Document(dataDir + "AddAttachment.pdf");
// 첨부 파일로 추가될 새 파일 설정
FileSpecification fileSpecification = new FileSpecification(dataDir + "test.txt", "샘플 텍스트 파일");
// 문서의 첨부 파일 컬렉션에 첨부 파일 추가
pdfDocument.EmbeddedFiles.Add(fileSpecification);
// 업데이트된 문서 저장
pdfDocument.Save(dataDir + "AddllAnnotations_out.pdf");