PDF redaction

0
Hello, I am in the process of evaluating the complete Document library for one of our project requirement. One of the requested feature is redacting a text or a specific area in a PDF document to hide any sensitive PII data in the document. I couldn't able to find the example in the documentation. Please let me know Thank you.
pdf
 
asked 8/31/2021 12:44:27 PM
add a comment

1 Answers

0
Hi In order to perform redacting we can use PdfCompositeField compositeField = new PdfCompositeField(font, PdfBrushes.Black, "Page {0} of {1}{2}", pageNumber, count, datetimefield); compositeField.Bounds = new RectangleF(0, 0, 250, 100); compositeField.Draw(doc.Pages[0].Graphics, new PointF(0, 0)); the above code .
 
answered 9/1/2021 7:46:25 PM
  Thank you for the example code. Do you know an chance, is there any documentation link for the same? Thanks again. kaykay 9/3/2021 2:16:16 AM
add a comment

Your Answer

Not the answer you're looking for? Browse other questions tagged pdf or ask your own question.