Как указать закладку на заголовок в PyPDF2?

#python #pdf #bookmarks #pypdf2 Вопрос: from PyPDF2 import PdfFileWriter, PdfFileReader from PyPDF2.generic import RectangleObject output = PdfFileWriter() # open output input = PdfFileReader(open('result.pdf', 'rb')) # open input output.addPage(input.getPage(0)) # insert…

Продолжить чтениеКак указать закладку на заголовок в PyPDF2?