概述

PDF中的文本域可以通过设置不同格式,用于显示数字、货币、日期、时间、邮政编码、电话号码和社保号等等。Adobe Acrobat提供了许多固定的JavaScripts用来设置和验证文本域的格式,如:AFNumber_Format(2, 0, 0, 0, "$", true)和AFNumber_Keystroke(2, 0, 0, 0, "$", true)。Format后缀的script是用来设置文本域显示的格式,而Keystroke后缀的script是用来验证输入内容。

Spire.PDF for .NET提供了相应的方法来设置和验证文本域格式。下面的表格罗列了常用的格式和Spire.PDF中对应的方法,可参考使用:

描述

示例

JavaScript

Spire.PDF提供的方法

日期

01/05/2022

AFDate_FormatEx("mm/dd/yyyy"); AFDate_KeystrokeEx("mm/dd/yyyy");

GetDateFormatString("mm/dd/yyyy"); GetDateKeystrokeString("mm/dd/yyyy");

邮政编码

12345

AFSpecial_Format(0); AFSpecial_Keystroke(0);

GetSpecialFormatString(0); GetSpecialKeystrokeString(0);

邮政编码+4

12345-1234

AFSpecial_Format(1); AFSpecial_Keystroke(1);

GetSpecialFormatString(1); GetSpecialKeystrokeString(1);

电话号码

(123)456-7890

AFSpecial_Format(2); AFSpecial_Keystroke(2);

GetSpecialFormatString(2); GetSpecialKeystrokeString(2);

货币

$12345.00 -$12345.00

AFNumber_Format(2,0,0,0,"$",true); AFNumber_Keystroke(2,0,0,0,"$",true);

GetNumberFormatString(2,0,0,0,"$",true); GetNumberKeystrokeString(2,0,0,0,"$",true);

验证

1.5≤输入值≤5.5

AFRange_Validate(true,1.5,true,5.5);

GetRangeValidateString(true,1.5,true,5.5);

引入dll

1.通过NuGet安装dll(2种方法)

1.1 可以在Visual Studio中打开“解决方案资源管理器”,鼠标右键点击“引用”,“管理NuGet包”,然后搜索“Spire.PDF”,点击“安装”。

1.2 将以下内容复制到PM控制台安装。

Install-Package Spire.PDF -Version 7.12.1

2.手动添加dll引用

可通过手动下载包,然后解压,找到BIN文件夹下的Spire.Pdf.dll。在Visual Studio中打开“解决方案资源管理器”,鼠标右键点击“引用”,“添加引用”将本地路径BIN文件夹下的dll文件添加引用至程序。

代码(C#/VB.NET)

C#

using Spire.Pdf;
using Spire.Pdf.Actions;
using Spire.Pdf.Fields;
using System.Drawing; namespace SetTextFormatInTextboxField
{
class Program
{
static void Main(string[] args)
{
//新建PDF文档,并添加空白页
PdfDocument pdf = new PdfDocument();
PdfPageBase page = pdf.Pages.Add(); //定义坐标变量
float X = 10;
float Y = 10;
float width = 100;
float height = 20; //实例化一个文本域对象,并设置它的位置和边框样式
PdfTextBoxField textbox = new PdfTextBoxField(page, "Number-TextBox");
textbox.Bounds = new RectangleF(X, Y, width, height);
textbox.BorderWidth = 0.75f;
textbox.BorderStyle = PdfBorderStyle.Solid; //给文本域的键盘击键事件设置一个JavaScript动作用于验证输入内容是否符合要求
string js = PdfJavaScript.GetNumberKeystrokeString(2, 0, 0, 0, "$", true);
PdfJavaScriptAction jsAction = new PdfJavaScriptAction(js);
textbox.Actions.KeyPressed = jsAction; //设置文本域内容显示为数字货币
js = PdfJavaScript.GetNumberFormatString(2, 0, 0, 0, "$", true);
jsAction = new PdfJavaScriptAction(js);
textbox.Actions.Format = jsAction; //添加文本域到PDF中,并保存文档
pdf.Form.Fields.Add(textbox); //添加文本框,设置文本内容显示为日期格式
PdfTextBoxField textbox1 = new PdfTextBoxField(page, "DateFormat-TextBox");
textbox1.Bounds = new RectangleF(X+200, Y, width, height);
textbox1.BorderWidth = 0.75f;
textbox1.BorderStyle = PdfBorderStyle.Solid;
string js1 = PdfJavaScript.GetDateKeystrokeString("mm/dd/yyyy");
PdfJavaScriptAction jsAction1 = new PdfJavaScriptAction(js1);
textbox1.Actions.KeyPressed = jsAction1;
js1 = PdfJavaScript.GetDateFormatString("mm/dd/yyyy");
jsAction1 = new PdfJavaScriptAction(js1);
textbox1.Actions.Format = jsAction1;
pdf.Form.Fields.Add(textbox1); //添加文本框,设置文本内容显示为邮政编码格式
PdfTextBoxField textbox2 = new PdfTextBoxField(page, "SpecialFormat0-1-TextBox");
textbox2.Bounds = new RectangleF(X + 400, Y, width, height);
textbox2.BorderWidth = 0.75f;
textbox2.BorderStyle = PdfBorderStyle.Solid;
//string js2 = PdfJavaScript.GetSpecialKeystrokeString(0);
string js2 = PdfJavaScript.GetSpecialKeystrokeString(1); PdfJavaScriptAction jsAction2 = new PdfJavaScriptAction(js2);
textbox2.Actions.KeyPressed = jsAction2;
//js2 = PdfJavaScript.GetSpecialFormatString(0);
js2 = PdfJavaScript.GetSpecialFormatString(1);
jsAction2 = new PdfJavaScriptAction(js2);
textbox2.Actions.Format = jsAction2;
pdf.Form.Fields.Add(textbox2); //添加文本框,设置文本内容显示为百分数
PdfTextBoxField textbox3 = new PdfTextBoxField(page, "SpecialFormat2-TextBox");
textbox3.Bounds = new RectangleF(X, Y+50, width, height);
textbox3.BorderWidth = 0.75f;
textbox3.BorderStyle = PdfBorderStyle.Solid;
string js3 = PdfJavaScript.GetPercentKeystrokeString(1,0);
PdfJavaScriptAction jsAction3 = new PdfJavaScriptAction(js3);
textbox3.Actions.KeyPressed = jsAction3;
js3 = PdfJavaScript.GetPercentFormatString(1, 0);
jsAction3 = new PdfJavaScriptAction(js3);
textbox3.Actions.Format = jsAction3;
pdf.Form.Fields.Add(textbox3); //添加文本框,设置数据验证
PdfTextBoxField textbox4 = new PdfTextBoxField(page, "RangeValidate-TextBox");
textbox4.Bounds = new RectangleF(X+200, Y + 50, width, height);
textbox4.BorderWidth = 0.75f;
textbox4.BorderStyle = PdfBorderStyle.Solid;
string js4 = PdfJavaScript.GetRangeValidateString(true, -18, true, 18);
PdfJavaScriptAction jsAction4 = new PdfJavaScriptAction(js4);
textbox4.Actions.Format = jsAction4;
pdf.Form.Fields.Add(textbox4); //保存文档
pdf.SaveToFile("FormatField.pdf", FileFormat.PDF);
}
}
}

VB.NET

Imports Spire.Pdf
Imports Spire.Pdf.Actions
Imports Spire.Pdf.Fields
Imports System.Drawing Namespace SetTextFormatInTextboxField
Class Program
Private Shared Sub Main(args As String())
'新建PDF文档,并添加空白页
Dim pdf As New PdfDocument()
Dim page As PdfPageBase = pdf.Pages.Add() '定义坐标变量
Dim X As Single = 10
Dim Y As Single = 10
Dim width As Single = 100
Dim height As Single = 20 '实例化一个文本域对象,并设置它的位置和边框样式
Dim textbox As New PdfTextBoxField(page, "Number-TextBox")
textbox.Bounds = New RectangleF(X, Y, width, height)
textbox.BorderWidth = 0.75F
textbox.BorderStyle = PdfBorderStyle.Solid '给文本域的键盘击键事件设置一个JavaScript动作用于验证输入内容是否符合要求
Dim js As String = PdfJavaScript.GetNumberKeystrokeString(2, 0, 0, 0, "$", True)
Dim jsAction As New PdfJavaScriptAction(js)
textbox.Actions.KeyPressed = jsAction '设置文本域内容显示为数字货币
js = PdfJavaScript.GetNumberFormatString(2, 0, 0, 0, "$", True)
jsAction = New PdfJavaScriptAction(js)
textbox.Actions.Format = jsAction '添加文本域到PDF中,并保存文档
pdf.Form.Fields.Add(textbox) '添加文本框,设置文本内容显示为日期格式
Dim textbox1 As New PdfTextBoxField(page, "DateFormat-TextBox")
textbox1.Bounds = New RectangleF(X + 200, Y, width, height)
textbox1.BorderWidth = 0.75F
textbox1.BorderStyle = PdfBorderStyle.Solid
Dim js1 As String = PdfJavaScript.GetDateKeystrokeString("mm/dd/yyyy")
Dim jsAction1 As New PdfJavaScriptAction(js1)
textbox1.Actions.KeyPressed = jsAction1
js1 = PdfJavaScript.GetDateFormatString("mm/dd/yyyy")
jsAction1 = New PdfJavaScriptAction(js1)
textbox1.Actions.Format = jsAction1
pdf.Form.Fields.Add(textbox1) '添加文本框,设置文本内容显示为邮政编码格式
Dim textbox2 As New PdfTextBoxField(page, "SpecialFormat0-1-TextBox")
textbox2.Bounds = New RectangleF(X + 400, Y, width, height)
textbox2.BorderWidth = 0.75F
textbox2.BorderStyle = PdfBorderStyle.Solid
'string js2 = PdfJavaScript.GetSpecialKeystrokeString(0);
Dim js2 As String = PdfJavaScript.GetSpecialKeystrokeString(1) Dim jsAction2 As New PdfJavaScriptAction(js2)
textbox2.Actions.KeyPressed = jsAction2
'js2 = PdfJavaScript.GetSpecialFormatString(0);
js2 = PdfJavaScript.GetSpecialFormatString(1)
jsAction2 = New PdfJavaScriptAction(js2)
textbox2.Actions.Format = jsAction2
pdf.Form.Fields.Add(textbox2) '添加文本框,设置文本内容显示为百分数
Dim textbox3 As New PdfTextBoxField(page, "SpecialFormat2-TextBox")
textbox3.Bounds = New RectangleF(X, Y + 50, width, height)
textbox3.BorderWidth = 0.75F
textbox3.BorderStyle = PdfBorderStyle.Solid
Dim js3 As String = PdfJavaScript.GetPercentKeystrokeString(1, 0)
Dim jsAction3 As New PdfJavaScriptAction(js3)
textbox3.Actions.KeyPressed = jsAction3
js3 = PdfJavaScript.GetPercentFormatString(1, 0)
jsAction3 = New PdfJavaScriptAction(js3)
textbox3.Actions.Format = jsAction3
pdf.Form.Fields.Add(textbox3) '添加文本框,设置数据验证
Dim textbox4 As New PdfTextBoxField(page, "RangeValidate-TextBox")
textbox4.Bounds = New RectangleF(X + 200, Y + 50, width, height)
textbox4.BorderWidth = 0.75F
textbox4.BorderStyle = PdfBorderStyle.Solid
Dim js4 As String = PdfJavaScript.GetRangeValidateString(True, -18, True, 18)
Dim jsAction4 As New PdfJavaScriptAction(js4)
textbox4.Actions.Format = jsAction4
pdf.Form.Fields.Add(textbox4) '保存文档
pdf.SaveToFile("FormatField.pdf", FileFormat.PDF)
End Sub
End Class
End Namespace

设置后的文本框域填写效果如图:

—End—

C# 设置或验证 PDF中的文本域格式的更多相关文章

  1. java itext替换PDF中的文本

    itext没有提供直接替换PDF文本的接口,我们可以通过在原有的文本区域覆盖一个遮挡层,再在上面加上文本来实现. 所需jar包: 1.先在PDF需要替换的位置覆盖一个白色遮挡层(颜色可根据PDF文字背 ...

  2. pdf转换成文本解决格式不统一问题

    pdf转换成文本解决格式不统一问题 懒得调OCR服务了,所以快速解决的方法是: pdf转png:https://pdf2png.com/zh/ png转统一格式pdf:adobe acrobat自带增 ...

  3. 使用itext直接替换PDF中的文本

    直接说问题,itext没有直接提供替换PDF中文本的接口(查看资料得到的结论是PDF不支持这种操作),不过存在解决思路:在需要替换的文本上覆盖新的文本.按照这个思路我们需要解决以下几个问题: itex ...

  4. Java 读取PDF中的文本和图片

    本文将介绍通过Java程序来读取PDF文档中的文本和图片的方法.分别调用方法extractText()和extractImages()来读取.   使用工具:Free Spire.PDF for Ja ...

  5. 解决:HTML中多文本域(textarea)回车后数据存入数据库,EL表达式取出异常。

    问题描述: 当多文本域(textarea)回车后数据存入数据库. EL表达式取出异常,值换行倒置页面报错. 问题解决: 存值脚本代码,提交前转换\n为<br/>. <script t ...

  6. Java 设置PDF中的文本旋转、倾斜

    本文介绍通过Java程序在PDF文档中设置文本旋转.倾斜的方法.设置文本倾斜时,通过定义方法TransformText(page);并设置page.getCanvas().skewTransform( ...

  7. Java 在PDF中添加水印——文本/图片水印

    水印是一种十分常用的防伪手段,常用于各种文档.资料等.常见的水印,包括文字类型的水印.图片或logo类型的水印.以下Java示例,将分别使用insertTextWatermark(PdfPageBas ...

  8. java从pdf中提取文本

    一(单文件转换):下载pdfbox包,百度搜pdfbox.(fontbox-1.8.16.jar和pdfbox-app-1.8.16.jar) package pdf; import java.io. ...

  9. 用python解析pdf中的文本与表格【pdfplumber的安装与使用】

    我们接触到的很多文档资料都是以pdf格式存在的,比如:论文,技术文档,标准文件,书籍等.pdf格式使得用机器从中提取信息格外困难. 为了解决这个问题,我找到了几种解决方案,最后选择了python上的p ...

随机推荐

  1. 面向切面编程(Spring AOP)

    一.什么是AOP AOP即面向切面编程,通过预编译方式和运行期动态代理实现程序功能的同一维护的一种技术.主要体现在日志记录.性能统计.安全控制.事务处理和异常处理等. 1.相关概念 二.切面.切入点配 ...

  2. gitlab 集成openldap

    Setting up LDAP sign-in If you have an LDAP directory service such as Active Directory, you can conf ...

  3. Nginx编译添加新模块

    目录 一.简介与思路 一.简介与思路 当前适用于nginx已经在安装过了,如果没安装过,直接在编译时候添加模块即可. Nginx主要程序就是nginx这个二进制脚本,只要在编译一个nginx脚本替换掉 ...

  4. ts配置项

    { "compilerOptions": { /* 基本选项 */ "target": "es5", // 指定 ECMAScript 目标 ...

  5. DDS协议解读及测试开发实践

    DDS概述 DDS是OMG在2004年发布的中间件协议和应用程序接口(API)标准,它为分布式系统提供了低延迟.高可靠性.可扩展的通信架构标准.DDS目前在工业.医疗.交通.能源.国防领域都有广泛的应 ...

  6. STM32F103ZET6 核心板制作指引

    学点啥系列之 --STM32F103ZET6 核心板制作指引 原创资料,转载请联系 作者的话:会画stm32F103ZET6的话,rct6啥的简直不要太简单 一.电路总览 图1:电路整体 二.单片机部 ...

  7. Log4j2又爆雷!2.16.0存在DOS风险,升级2.17.0可解决

    本以为,经过上周的2.16.0版本升级,Log4j2的漏洞修复工作,大家基本都要告一段落了. 万万没想到,就在周末,Log4j官方又发布了新版本:2.17.0 该版本主要修复安全漏洞:CVE-2021 ...

  8. LuoguB2075 幂的末尾 题解

    Content 求 \(a^b\) 的末三位. 数据范围:\(1\leqslant a\leqslant 100\),\(1\leqslant b\leqslant 10^4\). Solution ...

  9. java判断一个字符串是否为数字(整型、int)

    引入commons-lang 的jar包 /** * 判断是否是数字类型 * @param str * @return 如果为空返回false 匹配返回true */ public static bo ...

  10. 【LeetCode】1060. Missing Element in Sorted Array 解题报告 (C++)

    作者: 负雪明烛 id: fuxuemingzhu 个人博客:http://fuxuemingzhu.cn/ 目录 题目描述 题目大意 解题方法 遍历 日期 题目地址:https://leetcode ...