Spire.PDF-for-Java icon indicating copy to clipboard operation
Spire.PDF-for-Java copied to clipboard

Spire.PDF for Java is a PDF component that enables to read, write, print and convert PDF documents in Java applications without using Adobe Acrobat.

Results 3 Spire.PDF-for-Java issues
Sort by recently updated
recently updated
newest added

I want to check free version of library but it's not possible to get that # reference => https://www.e-iceblue.com/Download/free-pdf-for-android-via-java.html ``` maven { url "https://repo.e-iceblue.com/nexus/content/groups/public/" name "com.e-iceblue" } ``` ``` implementation...

PdfField pf = wc.get(i); if (pf instanceof PdfSignatureFieldWidget) { PdfSignatureFieldWidget sfw = (PdfSignatureFieldWidget) pf; PdfSignature sn = sfw.getSignature(); **X509Certificate2 x509 = sn.getCertificates().get_Item(0);** issuer = sn.getCertificate().get_IssuerName().getName(); if (sn.verifySignature() && issuers.contains(issuer)) {...

【版本】 最新版本:12.11.0 【原因】 在linux中生成文档时产生报错 找不到字体文件 java.lang.IllegalStateException: Cannot find any fonts in specified font sources. 【尝试解决方案】 linux上下载了对应文件 1、设置字体路径 document.setCustomFontsFolders("/usr/share/fonts/chinese/Fonts/"); 2、设置字体 tx.getCharacterFormat().setFontName("simsun"); simsun 就是在相应的/usr/share/fonts/chinese/Fonts/ 路径下 存在 simsun.ttl 文件 【最终解决】 无效、失败 java.lang.IllegalStateException: Cannot...