Save signed Word Processing with different output file type
Signature class supports saving of Word Processing signed documents with different formats. Each of document type has list of compatible saving type. These values are listed in enum WordProcessingSaveFileFormat.
Here are the steps to save signed Word Processing document to different output type with GroupDocs.Signature:
- Create new instance of Signature class and pass source document path or stream as a constructor parameter.
- Instantiate required signature options.
- Instantiate the WordProcessingSaveOptions object according to your requirements and specify setFileFormat as one of predefined values from WordProcessingSaveFileFormat.
- Call sign method of Signature class instance and pass signatureoptions and WordProcessingSaveOptions object to it.
Following example demonstrates how to save signed Word processing document with different output type
Signature signature = new Signature("sample.docx");
// create QRCode option with predefined QRCode text
QrCodeSignOptions signOptions = new QrCodeSignOptions("JohnSmith");
signOptions.setEncodeType(QrCodeTypes.QR);
signOptions.setLeft(100);
signOptions.setTop(100);
WordProcessingSaveOptions saveOptions = new WordProcessingSaveOptions();
saveOptions.setFileFormat(WordProcessingSaveFileFormat.Odt);
saveOptions.setOverwriteExistingFiles(true);
// sign document to file
signature.sign("SignedDocx.odt", signOptions, saveOptions);
More resources
GitHub Examples
You may easily run the code above and see the feature in action in our GitHub examples:
- GroupDocs.Signature for .NET examples, plugins, and showcase
- GroupDocs.Signature for Java examples, plugins, and showcase
- Document Signature for .NET MVC UI Example
- Document Signature for .NET App WebForms UI Example
- Document Signature for Java App Dropwizard UI Example
- Document Signature for Java Spring UI Example
Free Online App
Along with full-featured .NET library we provide simple, but powerful free Apps.
You are welcome to eSign PDF, Word, Excel, PowerPoint documents with free to use online GroupDocs Signature App.