Sign Odp files with Image signatures in Java

How to add Image Signature with a few lines of Java code


Download Free Trial

About GroupDocs.Signature for Java Image signatures API

GroupDocs.Signature for Java is a popular API for digital documents e-signing. Signatures like texts, images, digital certificates, barcodes, QR-codes, stamps or metadata are available. Signatures might be placed on PDFs, MS Word documents, MS Excel workbooks, MS PowerPoint presentations, Adobe Photoshop files and various image formats. Customers can sign their document and update, search, verify, delete or preview e-signatures which were put on those documents. Moreover, a lot of abilities for signatures customization are provided.

Steps to sign Odp with Image in Java

GroupDocs.Signature for Java provides ability to sign Odp documents with Image signatures quickly and easily.

  • Create an instance of Signature class providing Odp file supposed to signing as path or memory stream
  • Instantiate SignOptions class and set all demanded data.
  • Invoke the Signature.Sign() method passing output Odp file or memory stream

System Requirements

GroupDocs.Signature for Java 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: NetBeans, Intellij IDEA, Eclipse, etc.
  • Java runtime: J2SE 6.0 and above
  • Get the latest GroupDocs.Signature for Java from Maven

        
// Set up input Odp file
String filePath = "input.odp";
// Set up output file
String outputFilePath = "output.odp";
// Provide image file
String imageFilePath = "image.png";

// Instantiate Signature for input file
Signature signature = new Signature(filePath);

//Provide sign options
ImageSignOptions options = new ImageSignOptions(imageFilePath);

// set signature position
options.setLeft(50);
options.setTop(200);

// sign Odp document
SignResult result = signature.sign(outputFilePath, options);

Signing Odp documents with Image Live Demo

Sign Odp file with various signatures right now by visiting the GroupDocs.Signature App website. Free online demo waiting for you.

No need to download API

No need to write any code

Just upload the source file

Get download link to save the file

Other supported Image signatures for Java

“You can also sign Odp with other signature types. Please see the list below.”

Sign PDF with IMAGE

(Portable Document Format)

Sign DOC with IMAGE

(Microsoft Word Binary Format)

Sign DOCX with IMAGE

(Office 2007+ Word Document)

Sign DOCM with IMAGE

(Microsoft Word 2007 Marco File)

Sign DOT with IMAGE

(Microsoft Word Template Files)

Sign DOTM with IMAGE

(Microsoft Word 2007+ Template File)

Sign DOTX with IMAGE

(Microsoft Word Template File )

Sign ODT with IMAGE

(OpenDocument Text File Format)

Sign OTT with IMAGE

(OpenDocument Standard Format)

Sign RTF with IMAGE

(Rich Text Format)

Sign XLS with IMAGE

(Microsoft Excel Spreadsheet (Legacy))

Sign XLSX with IMAGE

(Open XML Workbook)

Sign XLSM with IMAGE

(Macro-enabled Spreadsheet)

Sign XLSB with IMAGE

(Excel Binary Workbook)

Sign CSV with IMAGE

(Comma Seperated Values)

Sign ODS with IMAGE

(OpenDocument Spreadsheet)

Sign OTS with IMAGE

(OpenDocument Spreadsheet Template)

Sign XLTX with IMAGE

(Excel Template)

Sign XLTM with IMAGE

(Excel Macro-Enabled Template)

Sign PPT with IMAGE

(Microsoft PowerPoint 97-2003)

Sign PPTX with IMAGE

(Open XML presentation Format)

Sign PPS with IMAGE

(PowerPoint Slide Show)

Sign PPSX with IMAGE

(PowerPoint Slide Show)

Sign OTP with IMAGE

(OpenDocument Standard Format)

Sign POTX with IMAGE

(Microsoft PowerPoint Template Presentation)

Sign POTM with IMAGE

(Microsoft PowerPoint Template File)

Sign PPTM with IMAGE

(Macro-enabled Presentation File)

Sign PPSM with IMAGE

(Macro-enabled Slide Show)

Sign PNG with IMAGE

(Portable Network Graphic)

Sign JPG with IMAGE

(Joint Photographic Expert Group Image)

Sign BMP with IMAGE

(Bitmap Image File)

Sign GIF with IMAGE

(Graphical Interchange Format)

Sign TIFF with IMAGE

(Tagged Image File Format)

Sign SVG with IMAGE

(Scalar Vector Graphics)

Sign WEBP with IMAGE

(Raster Web Image Format)

Sign WMF with IMAGE

(Windows Metafile)

Back to top
 English