GroupDocs.Signature for Java, metinler, resimler, dijital sertifikalar, barkodlar, QR kodları, damgalar veya meta veriler gibi çeşitli imza türlerini kullanan belgeleri işlemek için Java API’si sağlar. Kullanıcılar, imza özelliklerini gerektiği gibi özelleştirmek için ek destekle birlikte PDF’ler, MS Word belgeleri, MS Excel çalışma kitapları, MS PowerPoint sunumları, Adobe Photoshop dosyaları ve çeşitli görüntü biçimleri içindeki elektronik imzaları ekleyebilir, silebilir, güncelleyebilir, doğrulayabilir veya arayabilir.
GroupDocs.Signature for Java, Java geliştiricilerinin birkaç kolay adımı uygulayarak Pdf dosyalarında Barcode imzalarını aramasını kolaylaştırır.
GroupDocs.Signature for Java, tüm büyük platformlarda ve işletim sistemlerinde desteklenir. Aşağıdaki kodu çalıştırmadan önce lütfen aşağıdaki ön koşulların sisteminizde kurulu olduğundan emin olun.
// Set up input Pdf file
String filePath = "input.pdf";
// 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 Pdf document
List<BarcodeSignature> signatures = signature.search(BarcodeSignature.class, options);
// process signatures which were found
signatures.forEach(item -> System.out.println(item.toString()));
Şu anda GroupDocs.Signature App web sitesini ziyaret ederek belgede Pdf dosyalarına yönelik çeşitli elektronik imzaları arayın.
API'yi indirmeye gerek yok
Herhangi bir kod yazmaya gerek yok
Sadece kaynak dosyayı yükle
Dosyayı kaydetmek için indirme bağlantısını al
“Elektronik imzalar çeşitli belgelerde arama yapar. Aşağıda gösterildiği gibi popüler dosya biçimlerinden birindeki imzaları bulun.”
(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)
(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)