Redaction Sample

I downloaded the trial version and ran the redaction program. This gives me a file not found error. IT could not find HelloWorld.pdf.

Can you direct me how to get the pdf file?

Thanks

George

@george.soto,
You can import a PDF into Aspose.Pdf API by initializing a Document class object, the multiple constructors of the Document class allow to load a PDF in different ways. You can give a direct local path string of the PDF file as below:

[C#]

// load a PDF using local path string
Document document = new Document(@"c:\temp\HelloWorld.pdf");

Kindly let us know in case of any confusion or questions.

Best Regards,
Imran Rafique