Hi everybody
2 evaluation messages 'Evaluation Only. Created with Aspose.Pdf.Kit...' are displayed on top of pdf page on the following:
PdfFileStamp pdfStamp = new PdfFileStamp(inputStream, stampedStream); pdfStamp.Close();
PdfFileSecurity sec = new PdfFileSecurity(stampedStream, securedStream);
sec.ChangePassword(string.Empty, string.Empty, Guid.NewGuid().ToString(),
PdfPrivilege.AllowAll & ~PdfPrivilege.ModifyContents, false);
return securedStream;
when you save secured stream on disc and open file - evaluation message is displayed.
I use proper license, and when I add stamp to pdfStamp before add security, evaluation message is not displayed.
pdfStamp.AddStamp(theStamp);
I use version 3.5.0.0
Thank in advance.