pdf注释 一个纯Python库,用于向PDF添加注释。 关于 pdf-annotate是一个简单的库,用于将PDF注释添加到PDF。 在后台,它使用功能强大且不受限制的pdfrw库来解析PDF,以找出放置注释的位置。 用法 from pdf_annotate import PdfAnnotator , Location , Appearance a = PdfAnnotator ( 'a.pdf' ) a . add_annotation ( 'square' , Location ( x1 = 50 , y1 = 50 , x2 = 100 , y2 = 100 , page = 0 ), Appearance ( stroke_color = ( 1 , 0 , 0 ), stroke_width = 5 ), ) a . write ( 'b.pdf' )
2021-09-12 15:42:46 9.74MB library heraignore Python
1