Skip to content

Zorkator/numbering2pdf

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

numbering2pdf adds numbering to pdf file

Example:

from numbering2pdf import add_numbering_to_pdf

add_numbering_to_pdf("old_file.pdf", "new_file.pdf")

Parameters:

pdf_file - string or bytes

add_numbering_to_pdf("old_file.pdf", "new_file.pdf")
file = open("new.pdf", "br")
read_file = file.read()
file.close()
add_numbering_to_pdf(read_file, "new_file.pdf")
new_file = add_numbering_to_pdf("old_file.pdf")

new_pdf_file_path - path to new pdf file

add_numbering_to_pdf("old_file.pdf", "test/new_file.pdf")

position - position on screen (left, center, right)

add_numbering_to_pdf("old_file.pdf", "new_file.pdf", position="left")
add_numbering_to_pdf("old_file.pdf", "new_file.pdf", position="center")
add_numbering_to_pdf("old_file.pdf", "new_file.pdf", position="right")

start_page - from which page number will the numbering be added

add_numbering_to_pdf("old_file.pdf", "new_file.pdf", start_page=3)

end_page - on which page number will the numbering be completed

add_numbering_to_pdf("old_file.pdf", "new_file.pdf", end_page=10)

start_index - which number will the page numbering start from

add_numbering_to_pdf("old_file.pdf", "new_file.pdf", start_index=4)

size - number size

add_numbering_to_pdf("old_file.pdf", "new_file.pdf", size=25)

font - font type

Courier, Courier-Bold, Courier-Oblique, Courier-BoldOblique, Helvetica, Helvetica-Bold, Helvetica-Oblique, Helvetica-BoldOblique, Times-Roman, Times-Bold, Times-Italic, Times-BoldItalic, Symbol, ZapfDingbats

add_numbering_to_pdf("old_file.pdf", "new_file.pdf", font="Courier")

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%