Skip to content

jsandler18/pdf_form

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Fill PDF Forms

A library to programatically identify and fill out PDF forms

Example Code

  • Read a PDF and discover the form fields
extern crate pdf_form;
use pdf_form::{Form, FieldType};
fn main(){
    // 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 field_type in field_types {
        println!("{:?}", field_type);
    };
}
  • Write to the form fields
extern crate pdf_form;
use pdf_form::{Form, FieldState};
fn main(){
    // 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");
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages