Saving document as a rasterized PDF, you can specify starting page index (zero based) and the number of pages from this index to save. Also, you can change the Compliance level from PDF/A-1b, which is used by default, to PDF/A-1a:
C#
using(Redactorredactor=newRedactor(@"sample.docx")){RedactorChangeLogresult=redactor.Apply(newExactPhraseRedaction("John Doe",newReplacementOptions(System.Drawing.Color.Red)));if(result.Status!=RedactionStatus.Failed){varoptions=newSaveOptions();options.Rasterization.Enabled=true;// the same as options.RasterizeToPDF = true;options.Rasterization.PageIndex=5;// start from 6th page (index is 0-based)options.Rasterization.PageCount=1;// save only one pageoptions.Rasterization.Compliance=PdfComplianceLevel.PdfA1a;// by default PdfComplianceLevel.Auto or PDF/A-1boptions.AddSuffix=true;redactor.Save(options);}}
More resources
GitHub examples
You may easily run the code above and see the feature in action in our GitHub examples:
Along with full featured .NET library we provide simple, but powerful free Apps.
You are welcome to perform redactions for various document formats like PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, Emails and more with our free online Free Online Document Redaction App.
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.