We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
using PdfSharpCore.Pdf; using PdfSharpCore.Pdf.Security; Console.WriteLine("Hello, World!"); var doc = new PdfDocument(); doc.Info.Title = "Issue Submission"; doc.Info.Subject = "Subject"; doc.Info.Author = "Author"; doc.Info.Creator = "Creator"; doc.Info.Keywords = "Keyword:one;Keyword:two"; doc.Info.ModificationDate = DateTime.Now; doc.SecuritySettings.DocumentSecurityLevel = PdfDocumentSecurityLevel.Encrypted128Bit; doc.SecuritySettings.UserPassword = "user"; doc.SecuritySettings.OwnerPassword = "owner"; PdfPage page = doc.AddPage(); doc.Save(@"c:\temp\test.pdf");
`
The text was updated successfully, but these errors were encountered:
No branches or pull requests
`
The text was updated successfully, but these errors were encountered: