PDF Encryption
PDF encryption enables you to securely protect the content of your PDF file from unwanted viewers and against unwanted actions like printing, selecting text, etc.
Following example shows how to convert any presentation to encrypted PDF file with restricted permissions which requires a password to be decrypted, viewed and, optionally, modified.
Password and owner password should be specified in the appropriate text box.
For more information about PDF encryption in GemBox.Presentation, see PdfSaveOptions.Permissions
remarks.

using GemBox.Presentation;
class Program
{
static void Main()
{
// If using the Professional version, put your serial key below.
ComponentInfo.SetLicense("FREE-LIMITED-KEY");
var presentation = PresentationDocument.Load("%InputFileName%");
string password = "%Password%";
string ownerPassword = "%OwnerPassword%";
var options = new PdfSaveOptions()
{
DocumentOpenPassword = password,
PermissionsPassword = ownerPassword,
Permissions = PdfPermissions.None
};
presentation.Save("PDF Encryption.pdf", options);
}
}
Imports GemBox.Presentation
Module Program
Sub Main()
' If using the Professional version, put your serial key below.
ComponentInfo.SetLicense("FREE-LIMITED-KEY")
Dim presentation = PresentationDocument.Load("%InputFileName%")
Dim password As String = "%Password%"
Dim ownerPassword As String = "%OwnerPassword%"
Dim options = New PdfSaveOptions() With
{
.DocumentOpenPassword = password,
.PermissionsPassword = ownerPassword,
.Permissions = PdfPermissions.None
}
presentation.Save("PDF Encryption.pdf", options)
End Sub
End Module
See also
Next steps
Published: December 13, 2018 | Modified: December 19, 2022 | Author: Stipo Rubic