GroupDocs.Signature for Java tillhandahåller Java API för att bearbeta dokument med olika signaturtyper som texter, bilder, digitala certifikat, streckkoder, QR-koder, stämplar eller metadata. Användare kan lägga till, ta bort, uppdatera, verifiera eller söka efter elektroniska signaturer i PDF-filer, MS Word-dokument, MS Excel-arbetsböcker, MS PowerPoint-presentationer, Adobe Photoshop-filer och olika bildformat, med ytterligare stöd för att anpassa signaturegenskaper efter behov.
GroupDocs.Signature for Java gör det enklare för Java-utvecklare att söka efter Barcode-signaturer i Csv-filer från sina applikationer genom att implementera några enkla steg.
GroupDocs.Signature for Java stöds på alla större plattformar och operativsystem. Innan du kör koden nedan, se till att du har följande förutsättningar installerade på ditt system.
// Set up input Csv file
String filePath = "input.csv";
// 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 Csv document
List<BarcodeSignature> signatures = signature.search(BarcodeSignature.class, options);
// process signatures which were found
signatures.forEach(item -> System.out.println(item.toString()));
Sök i dokumentet efter olika elektroniska signaturer till Csv-filer just nu genom att besöka webbplatsen GroupDocs.Signature App.
Inget behov av att ladda ner API
Du behöver inte skriva någon kod
Ladda bara upp källfilen
Få nedladdningslänk för att spara filen
“Sök efter elektroniska signaturer i olika dokument. Hitta signaturer från ett av de populära filformaten som visas nedan.”
(Portable Document Format)
(Microsoft Word Binary Format)
(Office 2007+ Word Document)
(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)
(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)