#forms #pdf #field #pdf-form

pdf_forms

一个用于程序化填写PDF表单的库

10个版本

0.3.4 2020年10月3日
0.3.3 2020年9月29日
0.2.3 2020年9月26日
0.1.0 2020年9月23日

#1651 in 文本处理

MIT许可证

36KB
720

填写PDF表单

一个用于程序化识别和填写PDF表单的库。

警告:这是一个由jsandler18制作的原始"pdf_form"crate的分支,包括malte-v做出的所有改进。

示例代码

读取PDF并发现表单字段

extern crate pdf_form;
use pdf_form::{Form, FieldType};

// Load the pdf into a form from a path
let form = Form::load("path/to/pdf").unwrap();
// Get all types of the form fields (e.g. Text, Radio, etc) in a Vector
let field_types = form.get_all_types();
// Print the types
for type in field_types {
    println!("{:?}", type);
};

写入表单字段

extern crate pdf_form;
use pdf_form::{Form, FieldState};

// Load the pdf into a form from a path
let mut form = Form::load("path/to/pdf").unwrap();
form.set_text(0, String::from("filling the field"));
form.save("path/to/new/pdf");

依赖项

~25MB
~158K SLoC