Created
October 28, 2024 15:55
-
-
Save bjoerntx/a83a22aea544c6e186b6dab0f90bdca2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using TXTextControl; | |
using (ServerTextControl tx = new ServerTextControl()) { | |
tx.Create(); | |
// Load an encrypted document protected with a password | |
tx.Load("encrypted-document.tx", StreamType.InternalUnicodeFormat); | |
tx.Save("results.pdf", StreamType.AdobePDF); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment