C++ 를 통해 PDF 문서에 Redaction 주석을 추가합니다

Build your own C++ apps to manipulate comments & authors in document files using native APIs.

PDF 파일에 주석을 달기 위해 기능이 풍부하고 강력하며 사용하기 쉬운 C++ 플랫폼용 문서 조작 API인 Aspose.PDF for C++ API를 사용합니다.NuGet 패키지 관리자를 열고 Aspose.pdf를 검색하여 설치합니다.패키지 관리자 콘솔에서 다음 명령을 사용할 수도 있습니다.

Package Manager Console

PM > Install-Package Aspose.PDF.Cpp

C++ 을 (를) 통해 Redaction 주석 추가


사용자 환경에서 코드를 테스트하려면 Aspose.PDF 가 필요합니다.

  • 문서 클래스의 인스턴스에서 PDF 로드
  • 새 페이지를 만들거나 기존 페이지에 대한 참조 가져오기
  • Redaction 주석 생성
  • Page.Annotations 컬렉션에서 Redaction 주석에 대해 Add 메서드를 호출합니다
  • 파일을 다시 저장합니다

시스템 요구 사항


C++ 용 Aspose.PDF 는 모든 주요 운영 체제에서 지원됩니다.다음과 같은 전제 조건이 있는지 확인하십시오.

  • 마이크로소프트 윈도우 또는 윈도우 32비트, 윈도우 64비트 및 리눅스 64비트용 C++ 런타임 환경을 갖춘 호환 OS.
  • 마이크로소프트 비주얼 스튜디오와 같은 개발 환경.
  • C++ DLL용 Aspose.PDF 가 프로젝트에서 참조되었습니다.

PDF에서 Redaction 주석 추가 - C++

Example

    // Load the PDF file
    Document document = new Document(System.IO.Path.Combine(_dataDir, "sample.pdf"));
    // Create RedactionAnnotation instance for specific page region
    RedactionAnnotation annot = new RedactionAnnotation(doc.Pages[1], new Aspose.Pdf.Rectangle(200, 500, 300, 600));
    annot.FillColor = Aspose.Pdf.Color.Green;
    annot.BorderColor = Aspose.Pdf.Color.Yellow;
    annot.Color = Aspose.Pdf.Color.Blue;
    // Text to be printed on redact annotation
    annot.OverlayText = "REDACTED";
    annot.TextAlignment = Aspose.Pdf.HorizontalAlignment.Center;
    // Repat Overlay text over redact Annotation
    annot.Repeat = true;
    document.Pages[1].Annotations.Add(RedactionAnnotation1);
    document.Save(System.IO.Path.Combine(_dataDir, "sample_Redaction.pdf"));