GroupDocs.Signature for Java ponuja API za Java za obdelavo dokumentov z uporabo različnih vrst podpisov, kot so besedila, slike, digitalna potrdila, črtne kode, kode QR, žigi ali metapodatki. Uporabniki lahko dodajajo, brišejo, posodabljajo, preverjajo ali iščejo elektronske podpise v datotekah PDF, dokumentih MS Word, delovnih zvezkih MS Excel, predstavitvah MS PowerPoint, datotekah Adobe Photoshop in različnih formatih slik, z dodatno podporo za prilagajanje lastnosti podpisov po potrebi.
GroupDocs.Signature for Java razvijalcem za Java olajša iskanje podpisov Barcode v datotekah Docx iz njihovih aplikacij z implementacijo nekaj preprostih korakov.
GroupDocs.Signature for Java so podprti na vseh glavnih platformah in operacijskih sistemih. Preden izvedete spodnjo kodo, se prepričajte, da imate v sistemu nameščene naslednje predpogoje.
// Set up input Docx file
String filePath = "input.docx";
// Instantiate Signature for input file
Signature signature = new Signature(filePath);
//Create search options
BarcodeSearchOptions options = new BarcodeSearchOptions();
// specify special pages to search on
options.setAllPages(false);
// single page number
options.setPageNumber(1);
// specify text match type
options.setMatchType(TextMatchType.Contains);
// specify text pattern to search
options.setText("Text signature");
// return Barcode images for processing
options.setReturnContent(true);
// set up type of returned Barcode images
options.setReturnContentType(FileType.PNG);
// search for Barcode signatures in Docx document
List<BarcodeSignature> signatures = signature.search(BarcodeSignature.class, options);
// process signatures which were found
signatures.forEach(item -> System.out.println(item.toString()));
Takoj zdaj poiščite v dokumentu različne elektronske podpise za datoteke Docx tako, da obiščete spletno mesto GroupDocs.Signature App.
Ni treba prenesti API -ja
Ni treba pisati nobene kode
Samo naložite izvorno datoteko
Pridobite povezavo za prenos, da shranite datoteko
“Iskanje elektronskih podpisov v različnih dokumentih. Poiščite podpise enega od priljubljenih formatov datotek, kot je prikazano spodaj.”
(Portable Document Format)
(Microsoft Word Binary Format)
(Microsoft Word 2007 Marco File)
(Microsoft Word Template Files)
(Microsoft Word 2007+ Template File)
(Microsoft Word Template File )
(OpenDocument Text File Format)
(OpenDocument Standard Format)
(Rich Text Format)
(Microsoft Excel Spreadsheet (Legacy))
(Open XML Workbook)
(Macro-enabled Spreadsheet)
(Excel Binary Workbook)
(Comma Seperated Values)
(OpenDocument Spreadsheet)
(OpenDocument Spreadsheet Template)
(Excel Template)
(Excel Macro-Enabled Template)
(Microsoft PowerPoint 97-2003)
(Open XML presentation Format)
(PowerPoint Slide Show)
(PowerPoint Slide Show)
(OpenDocument Presentation Format)
(OpenDocument Standard Format)
(Microsoft PowerPoint Template Presentation)
(Microsoft PowerPoint Template File)
(Macro-enabled Presentation File)
(Macro-enabled Slide Show)
(Portable Network Graphic)
(Joint Photographic Expert Group Image)
(Bitmap Image File)
(Graphical Interchange Format)
(Tagged Image File Format)
(Scalar Vector Graphics)
(Raster Web Image Format)
(Windows Metafile)