Load password-protected document
Leave feedback
GroupDocs.Conversion supports the conversion of documents that are protected with a password.
To load and convert a password-protected document, follow these steps:
- Define a Func<LoadOptions> delegate, which should return an instance of document-specific load options with the password specified.
- Create an instance of the Converter class and pass the source document path and the load options delegate as the constructor parameters.
- Instantiate the appropriate ConvertOptions class e.g. (PdfConvertOptions, WordProcessingConvertOptions, SpreadsheetConvertOptions, etc.)
- Call the Convert method of the Converter class instance and pass the filename for the converted document and the instance of the ConvertOptions from the previous step.
The following code snippet shows how to convert password protected document:
Contracts.Func<LoadOptions> getLoadOptions = () => new WordProcessingLoadOptions
{
Password = "12345"
};
using (Converter converter = new Converter("sample_with_password.docx", getLoadOptions))
{
PdfConvertOptions options = new PdfConvertOptions();
converter.Convert("converted.pdf, options);
}
You can also use fluent syntax
FluentConverter
.Load("sample_with_password.docx").WithOptions(() => new WordProcessingLoadOptions
{
Password = "12345"
})
.ConvertTo("converted.pdf")
.Convert();
WarningFluent syntax is introduced in v22.1
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.