Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
캐럿 주석은 텍스트 편집을 나타내는 기호입니다. 캐럿 주석은 마크업 주석이기도 하므로 캐럿 클래스는 마크업 클래스에서 파생되며 캐럿 주석의 속성을 가져오거나 설정하고 캐럿 주석의 모양 흐름을 재설정하는 기능도 제공합니다.
다음 코드 스니펫은 Aspose.PDF.Drawing 라이브러리와 함께 작동합니다.
캐럿 주석을 생성하는 단계:
다음 코드 스니펫은 PDF 파일에 캐럿 주석을 추가하는 방법을 보여줍니다:
// For complete examples and data files, visit https://github.com/aspose-pdf/Aspose.PDF-for-.NET
private static void AddCaretAnnotations()
{
// The path to the documents directory
var dataDir = RunExamples.GetDataDir_AsposePdf_Annotations();
// Open PDF document
using (var document = new Aspose.Pdf.Document(dataDir + "sample.pdf"))
{
// Create Caret Annotation for text insertion
var caretAnnotation1 = new Aspose.Pdf.Annotations.CaretAnnotation(document.Pages[1], new Aspose.Pdf.Rectangle(299.988, 713.664, 308.708, 720.769))
{
Title = "Aspose User",
Subject = "Inserted text 1",
Flags = Aspose.Pdf.Annotations.AnnotationFlags.Print,
Color = Aspose.Pdf.Color.Blue
};
// Create Caret Annotation for text replacement
var caretAnnotation2 = new Aspose.Pdf.Annotations.CaretAnnotation(document.Pages[1], new Aspose.Pdf.Rectangle(361.246, 727.908, 370.081, 735.107))
{
Flags = Aspose.Pdf.Annotations.AnnotationFlags.Print,
Subject = "Inserted text 2",
Title = "Aspose User",
Color = Aspose.Pdf.Color.Blue
};
// Create StrikeOut Annotation
var strikeOutAnnotation = new Aspose.Pdf.Annotations.StrikeOutAnnotation(document.Pages[1],
new Rectangle(318.407, 727.826, 368.916, 740.098))
{
Color = Aspose.Pdf.Color.Blue,
QuadPoints = new[] {
new Point(321.66, 739.416),
new Point(365.664, 739.416),
new Point(321.66, 728.508),
new Point(365.664, 728.508)
},
Subject = "Cross-out",
InReplyTo = caretAnnotation2,
ReplyType = Aspose.Pdf.Annotations.ReplyType.Group
};
document.Pages[1].Annotations.Add(caretAnnotation1);
document.Pages[1].Annotations.Add(caretAnnotation2);
document.Pages[1].Annotations.Add(strikeOutAnnotation);
// Save PDF document
document.Save(dataDir + "AddCaretAnnotations_out.pdf");
}
}
다음 코드 스니펫을 사용하여 PDF 문서에서 캐럿 주석을 가져와 보십시오:
// For complete examples and data files, visit https://github.com/aspose-pdf/Aspose.PDF-for-.NET
private static void GetCaretAnnotation()
{
// The path to the documents directory
var dataDir = RunExamples.GetDataDir_AsposePdf_Annotations();
// Open PDF document
using (var document = new Aspose.Pdf.Document(dataDir + "sample_caret.pdf"))
{
// Get Caret annotations from the first page
var caretAnnotations = document.Pages[1].Annotations
.Where(a => a.AnnotationType == Aspose.Pdf.Annotations.AnnotationType.Caret)
.Cast<Aspose.Pdf.Annotations.CaretAnnotation>();
// Iterate through the annotations and print their details
foreach (var ca in caretAnnotations)
{
Console.WriteLine($"{ca.Rect}");
}
}
}
다음 코드 스니펫은 PDF 파일에서 캐럿 주석을 삭제하는 방법을 보여줍니다.
// For complete examples and data files, visit https://github.com/aspose-pdf/Aspose.PDF-for-.NET
private static void DeleteCaretAnnotation()
{
// The path to the documents directory
var dataDir = RunExamples.GetDataDir_AsposePdf_Annotations();
// Open PDF document
using (var document = new Aspose.Pdf.Document(dataDir + "sample_caret.pdf"))
{
// Get Caret annotations from the first page
var caretAnnotations = document.Pages[1].Annotations
.Where(a => a.AnnotationType == Aspose.Pdf.Annotations.AnnotationType.Caret)
.Cast<Aspose.Pdf.Annotations.CaretAnnotation>();
// Delete each Caret annotation
foreach (var ca in caretAnnotations)
{
document.Pages[1].Annotations.Delete(ca);
}
// Save PDF document after deleting annotations
document.Save(dataDir + "DeleteCaretAnnotation_out.pdf");
}
}
Aspose.PDF for .NET은 기존 PDF 파일에서 주석을 추가하고 조작하는 기능을 지원합니다. 최근 일부 고객이 PDF 문서의 특정 페이지 영역에서 텍스트, 이미지 등의 요소를 수정(제거)해야 한다고 요청했습니다. 이 요구 사항을 충족하기 위해 RedactionAnnotation이라는 클래스가 제공되며, 이를 사용하여 특정 페이지 영역을 수정하거나 기존 수정 주석을 조작하고 수정할 수 있습니다(즉, 주석을 평면화하고 그 아래의 텍스트를 제거합니다).
// For complete examples and data files, visit https://github.com/aspose-pdf/Aspose.PDF-for-.NET
private static void RedactPage()
{
// The path to the documents directory
var dataDir = RunExamples.GetDataDir_AsposePdf_Annotations();
// Open PDF document
using (var document = new Aspose.Pdf.Document(dataDir + "input.pdf"))
{
// Create RedactionAnnotation instance for a specific page region
var annot = new Aspose.Pdf.Annotations.RedactionAnnotation(document.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 the redact annotation
annot.OverlayText = "REDACTED";
annot.TextAlignment = Aspose.Pdf.HorizontalAlignment.Center;
// Repeat Overlay text over the redact Annotation
annot.Repeat = true;
// Add annotation to the annotations collection of the first page
document.Pages[1].Annotations.Add(annot);
// Flattens annotation and redacts page contents (i.e., removes text and image under the redacted annotation)
annot.Redact();
// Save the result document
document.Save(dataDir + "RedactPage_out.pdf");
}
}
Aspose.Pdf.Facades 네임스페이스에는 PDF 파일 내의 기존 주석을 조작하는 기능을 제공하는 PdfAnnotationEditor라는 클래스도 있습니다. 이 클래스에는 특정 페이지 영역을 제거하는 기능을 제공하는 RedactArea(..)라는 메서드가 포함되어 있습니다.
// For complete examples and data files, visit https://github.com/aspose-pdf/Aspose.PDF-for-.NET
private static void RedactPageWithFacadesApproach()
{
// The path to the documents directory
var dataDir = RunExamples.GetDataDir_AsposePdf_Annotations();
// Create an instance of PdfAnnotationEditor
using (var editor = new Aspose.Pdf.Facades.PdfAnnotationEditor())
{
// Redact a specific page region
editor.RedactArea(1, new Aspose.Pdf.Rectangle(100, 100, 20, 70), System.Drawing.Color.White);
// Bind PDF document
editor.BindPdf(dataDir + "input.pdf");
// Save the result document
editor.Save(dataDir + "FacadesApproach_out.pdf");
}
}
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.