Ask Your Question
1

Is it possible to open a PDF file that is contained within a ZIP folder using fitz.open()?

asked 2023-06-08 22:05:13 +0000

lalupa gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2023-06-08 22:32:01 +0000

djk gravatar image

No, it is not possible to open a PDF file that is contained within a ZIP folder using fitz.open(). You will need to first extract the PDF file from the ZIP folder and then open it using fitz.open(). Here is an example of how to extract a PDF file from a ZIP folder using Python:

import zipfile

# Open the ZIP folder
with zipfile.ZipFile("myzip.zip", "r") as myzip:

    # Extract the PDF file
    myzip.extract("mypdf.pdf")

# Open the PDF file with PyMuPDF
import fitz

doc = fitz.open("mypdf.pdf")
edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-06-08 22:05:13 +0000

Seen: 7 times

Last updated: Jun 08 '23