I have purchased the Aspose.Words.Word.Processor.for.NET plugin, for the price of $99 on the aspose.net website.
and after placing the public and private key directly in the code it continues to place watermarks on my document converted to PDF
I have purchased the Aspose.Words.Word.Processor.for.NET plugin, for the price of $99 on the aspose.net website.
and after placing the public and private key directly in the code it continues to place watermarks on my document converted to PDF
@jvargasmorales There is small misunderstanding of the features covered by your license. You have only Word Processor feature. But to achieve your requirement, it is required to use the following code:
Document doc = new Document(@"C:\Temp\in.docx");
doc.Save(@"C:\Temp\out.pdf");
This code include 3 features: Load MS Word documents, save PDF documents and converter. So you should have 3 feature licenses. You code should look like this:
Aspose.Words.Metered metered = new Aspose.Words.Metered();
metered.SetMeteredKey("<public-key-load-save-docx>", "<private-key-load-save-docx>"); // Apply feature license for loading and saving document (Word Processor)
metered.SetMeteredKey("<public-key-save-pdf>", "<private-key-save-pdf>"); // Apply feature license for saving PDF document (PDF Processor)
metered.SetMeteredKey("<public-key-converter>", "<private-key-converter"); // Apply feature license for converter
Document doc = new Document(@"C:\Temp\in.docx");
doc.Save(@"C:\Temp\out.pdf");
So you need Word Processor license, PDF Processor license and Converter license to make the above code work.