Hi,
I was trying to implement the this below link code. But there I am getting PdfRedaction reference is not found. The namespaces are also not found Syncfusion.Pdf.Parsing, Syncfusion.Pdf.Redaction. From NutGet I have added Syncfusion.Pdf.Net.Core reference but still the reference are not found, Please help me what I am missing. .
using Syncfusion.Pdf;
using Syncfusion.Pdf.Graphics;
using Syncfusion.Pdf.Parsing;
using Syncfusion.Pdf.Redaction;
public void GetString()
{
//Load a PDF document for redaction
PdfLoadedDocument ldoc = new PdfLoadedDocument("/pdfs/Sample.pdf");
//Get first page from document
PdfLoadedPage lpage = ldoc.Pages[0] as PdfLoadedPage;
//Create PDF redaction for the page
PdfRedaction redaction = new PdfRedaction(new RectangleF(340, 120, 140, 20));
//Adds the redaction to loaded 1st page
lpage.Redactions.Add(redaction);
//Save the redacted PDF document to disk
ldoc.Save("RedactedPDF.pdf");
//Close the document instance
ldoc.Close(true);
}