import fitz
text_rectangle = fitz.Rect(450,20,550,120)
file_handle = fitz.open(input_file)
first_page = file_handle[0]
text = 'SAS Automation'
first_page.insertTextbox(text_rectangle, f'{text}')
file_handle.save(output_file)
上面的代码以镜像形式在 pdf 中添加文本为什么我不知道我尝试了 insertText 方法,使用 inserTextbox 变形属性但仍然没有找到解决方案。您可以在此处查看输出OutPut PDF 文件图像
有什么帮助吗?提前致谢