i'm using pdf.net as part of a document conversion application. When I convert a word doc to a pdf document, the resulting pdf file is password protected. A code snippet is listed below - am I doing something wrong, or is this an artifact of using an evaluation license?
Aspose.Words.Document srcDoc = new Aspose.Words.Document(gInFileName);
srcDoc.SaveOptions.PdfExportImagesFolder = Path.GetDirectoryName(gInFileName);
srcDoc.Save(xmlDoc, Aspose.Words.SaveFormat.AsposePdf);
xmlDoc.Position = 0;
pdf.BindXML(xmlDoc, null);
pdf.IsImagesInXmlDeleteNeeded = true;
pdf.Save(sTempOutPDFFile);