Description of the bug
test.pdf
When I tried to convert the pdf file to an image and save it locally, I noticed that some lines were missing from the image
How to reproduce the bug
I want to convert pdf to jpg, like this:
doc = fitz.open(pdf_file)
page = doc[0]
matrix = fitz.Matrix(3, 3)
pix = page.get_pixmap(matrix=matrix)
image_save_path = "test.jpg"
pix.save(image_save_path)
but some lines were missing:

PyMuPDF version
1.25.4
Operating system
Windows
Python version
3.9