Edit and update Image signatures placed at Ods files

API for .NET provides functionality for Image signatures updating at Ods documents. Update e-signatures inside your Ods documents with a couple lines of C# code quickly and easily.


Download Free Trial

Learn about GroupDocs.Signature for .NET API features

GroupDocs.Signature for .NET API functionality contains vast selection of means to process in demand documents formats by using electronic signatures. Wide spectrum of e-signatures like texts, images, digital certificates, barcodes, QR-codes, stamps or metadata are supported. Customers can add, remove, edit, validate or search digital signatures at PDFs, MS Word documents, MS Excel workbooks, MS PowerPoint presentations, Adobe Photoshop files and various image formats. Numerous useful features and settings are available.

How to change Image signatures in your Ods document

GroupDocs.Signature for .NET includes useful features like updation of Image signatures placed at Ods documents. It makes possible to change signatures features without extra code.

  • To start with, create Signature object passing as a constructor parameter path to a document which is supposed to be updated.
  • Then, instantiate an appropriate particular signature object and set up its identifier and properties which need to be changed.
  • Lastly, call Signature’s Update method passing particular signature object.
  • Process updating results to your notice.

System Requirements

GroupDocs.Signature for .NET are supported on all major platforms and operating systems. Before executing the code below, please make sure that you have the following prerequisites installed on your system.

  • Operating systems: Microsoft Windows, Linux, MacOS
  • Development environments: Microsoft Visual Studio, Xamarin, MonoDevelop
  • Frameworks: .NET Framework, .NET Standard, .NET Core, Mono
  • Download the latest version of GroupDocs.Signature for .NET from Nuget

        
// Set up input Ods file
string filePath = "input.ods";

// Instantiate Signature for input file
using (GroupDocs.Signature.Signature signature = new GroupDocs.Signature.Signature(filePath))
{
        // Id of signature which is supposed to be updated
        // such Id might be got as a result of search operation
        string id = "ff988ab1-7403-4c8d-8db7-f2a56b9f8530";

        // provide signature features to update
        // set up particular signature id
        ImageSignature signatureToUpdate = new ImageSignature(id)
        {
            // specify signature width
            Width = 170,
            // specify signature height
            Height = 250,
            // set left position
            Left = 10,
            // set top position
            Top = 10
        };

        // update signature
        bool updateResult = signature.Update(signatureToUpdate);

        // process updation result
        if (updateResult)
        {
            Console.WriteLine("Signature was updated successfully!");
        }
}

Updating the Image signatures on the document pages - Live Demo

Edit various electronic signatures of the Ods document right now by visiting the GroupDocs.Signature App website.

No need to download API

No need to write any code

Just upload the source file

Get download link to save the file

Update various Image signatures via C#

“Editing digital signatures which are placed in various document formats. Update signatures data without extra code.”

Update IMAGE in PDF

(Portable Document Format)

Update IMAGE in DOC

(Microsoft Word Binary Format)

Update IMAGE in DOCX

(Office 2007+ Word Document)

Update IMAGE in DOCM

(Microsoft Word 2007 Marco File)

Update IMAGE in DOT

(Microsoft Word Template Files)

Update IMAGE in DOTM

(Microsoft Word 2007+ Template File)

Update IMAGE in DOTX

(Microsoft Word Template File )

Update IMAGE in ODT

(OpenDocument Text File Format)

Update IMAGE in OTT

(OpenDocument Standard Format)

Update IMAGE in RTF

(Rich Text Format)

Update IMAGE in XLS

(Microsoft Excel Spreadsheet (Legacy))

Update IMAGE in XLSX

(Open XML Workbook)

Update IMAGE in XLSM

(Macro-enabled Spreadsheet)

Update IMAGE in XLSB

(Excel Binary Workbook)

Update IMAGE in CSV

(Comma Seperated Values)

Update IMAGE in OTS

(OpenDocument Spreadsheet Template)

Update IMAGE in XLTX

(Excel Template)

Update IMAGE in XLTM

(Excel Macro-Enabled Template)

Update IMAGE in PPT

(Microsoft PowerPoint 97-2003)

Update IMAGE in PPTX

(Open XML presentation Format)

Update IMAGE in PPS

(PowerPoint Slide Show)

Update IMAGE in PPSX

(PowerPoint Slide Show)

Update IMAGE in ODP

(OpenDocument Presentation Format)

Update IMAGE in OTP

(OpenDocument Standard Format)

Update IMAGE in POTX

(Microsoft PowerPoint Template Presentation)

Update IMAGE in POTM

(Microsoft PowerPoint Template File)

Update IMAGE in PPTM

(Macro-enabled Presentation File)

Update IMAGE in PPSM

(Macro-enabled Slide Show)

Back to top
 English