创建一个 pdf 文件,写入其中并使用 PyMuPDF return 其字节流

Create a pdf file, write in it and return its byte stream with PyMuPDF

使用 PyMuPDF,我需要创建一个 PDF 文件,向其中写入一些文本,然后 return 它的字节流。

这是我的代码,但它使用文件系统来创建和保存文件:

    import fitz
    path = "PyMuPDF_test.pdf"
    doc = fitz.open()
    page = doc.newPage()
    where = fitz.Point(50, 100)
    page.insertText(where, "PDF created with PyMuPDF", fontsize=50)
    doc.save(path)  # Here Im saving to the filesystem
    with open(path, "rb") as file:
        return io.BytesIO(file.read()).getvalue()

有没有一种方法可以创建一个 PDF 文件,在其中写入一些文本,然后 return 它的字节流而不使用文件系统?

检查 save() I found write() 直接将其作为字节

import fitz

#path = "PyMuPDF_test.pdf"

doc = fitz.open()
page = doc.newPage()
where = fitz.Point(50, 100)
page.insertText(where, "PDF created with PyMuPDF", fontsize=50)

print(doc.write())