#表单 #pdf

pdf_form

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

4 个版本 (破坏性更新)

0.4.0 2020年9月28日
0.3.0 2020年9月25日
0.2.0 2018年6月9日
0.1.0 2018年3月25日

#1609文本处理

每月下载量 34

MIT 许可证

35KB
707

填写PDF表格

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

示例代码

  • 读取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");

依赖项

~15MB
~146K SLoC