Search for Image signatures in Pptm file

Java native API allows to search for Image signatures in already signed Pptm files. Perform advanced e-signature search within your Pptm documents using a few lines of code.


Download Free Trial

About GroupDocs.Signature for Java API

GroupDocs.Signature for Java provides Java API for processing documents using various signature types such as texts, images, digital certificates, barcodes, QR-codes, stamps or metadata. Users can add, delete, update, verify or search electronic signatures within PDFs, MS Word documents, MS Excel workbooks, MS PowerPoint presentations, Adobe Photoshop files and various image formats, with additional support for customizing signatures properties as needed.

How to search for Image signatures in Pptm

GroupDocs.Signature for Java makes it easier for Java developers to search for Image signatures in Pptm files from their applications by implementing a few easy steps.

  • Create a new instance of Signature class and pass source document path as a constructor parameter.
  • Instantiate the SearchOptions object according to your requirements and specify searching options.
  • Call Search method of Signature class instance and pass SearchOptions to it.
  • Process searching results accordingly to your demands.

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
  • Download the latest version of GroupDocs.Signature for Java from Maven

        
// Set up input Pptm file
String filePath = "input.pptm";

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

//Create search options
ImageSearchOptions options = new ImageSearchOptions();

// set minimum size if needed 
options.setMinContentSize(100);
// set maximum image size if needed
options.setMaxContentSize(2000);
// return images for processing
options.setReturnContent(true);
// set up type of returned images
options.setReturnContentType(FileType.PNG);

// search for Image signatures in Pptm document
List<ImageSignature> signatures = signature.search(ImageSignature.class, options);

// process signatures which were found 
signatures.forEach(item -> System.out.println(item.toString()));

Search for Image electronic signatures Live Demo

Search the document for various electronic signatures to Pptm files 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

Search for other Image signatures using Java

“Electronic signatures search in various documents. Find signatures from the one of popular file formats as shown below.”

Search IMAGE in PDF

(Portable Document Format)

Search IMAGE in DOC

(Microsoft Word Binary Format)

Search IMAGE in DOCX

(Office 2007+ Word Document)

Search IMAGE in DOCM

(Microsoft Word 2007 Marco File)

Search IMAGE in DOT

(Microsoft Word Template Files)

Search IMAGE in DOTM

(Microsoft Word 2007+ Template File)

Search IMAGE in DOTX

(Microsoft Word Template File )

Search IMAGE in ODT

(OpenDocument Text File Format)

Search IMAGE in OTT

(OpenDocument Standard Format)

Search IMAGE in RTF

(Rich Text Format)

Search IMAGE in XLS

(Microsoft Excel Spreadsheet (Legacy))

Search IMAGE in XLSX

(Open XML Workbook)

Search IMAGE in XLSM

(Macro-enabled Spreadsheet)

Search IMAGE in XLSB

(Excel Binary Workbook)

Search IMAGE in CSV

(Comma Seperated Values)

Search IMAGE in ODS

(OpenDocument Spreadsheet)

Search IMAGE in OTS

(OpenDocument Spreadsheet Template)

Search IMAGE in XLTX

(Excel Template)

Search IMAGE in XLTM

(Excel Macro-Enabled Template)

Search IMAGE in PPT

(Microsoft PowerPoint 97-2003)

Search IMAGE in PPTX

(Open XML presentation Format)

Search IMAGE in PPS

(PowerPoint Slide Show)

Search IMAGE in PPSX

(PowerPoint Slide Show)

Search IMAGE in ODP

(OpenDocument Presentation Format)

Search IMAGE in OTP

(OpenDocument Standard Format)

Search IMAGE in POTX

(Microsoft PowerPoint Template Presentation)

Search IMAGE in POTM

(Microsoft PowerPoint Template File)

Search IMAGE in PPSM

(Macro-enabled Slide Show)

Back to top
 English