Пікірлер
@kicobabic1551
@kicobabic1551 9 күн бұрын
Is this also possible with text/words (BT/ET), so that the text frame is enlarged/reduced accordingly? If so, can you make a video about it?
@vat_academy
@vat_academy 22 күн бұрын
Thanks for awesome video
@AllexamNotes-t2u
@AllexamNotes-t2u 26 күн бұрын
Can you create a video on it
@PyMuPDF
@PyMuPDF 21 күн бұрын
Hi @AllexamNotes-t2u, thanks for your comments. Yes, we will work on a video that covers creating links.
@AllexamNotes-t2u
@AllexamNotes-t2u 26 күн бұрын
I generate code for this, but i am not able to run it at Replit using pymupdf
@AllexamNotes-t2u
@AllexamNotes-t2u 26 күн бұрын
How to insert a link in all pages of PDFs by using python? I am bignner so I don't know python. Plz guide step wise it.
@vat_academy
@vat_academy 26 күн бұрын
Thanks a lot
@kundanjadhav8758
@kundanjadhav8758 Ай бұрын
Error: 'Document' object has no attribute 'find_tables'
@PyMuPDF
@PyMuPDF 22 күн бұрын
Hello, 'find_tables' is on the “Page” class - pymupdf.readthedocs.io/en/latest/page.html#Page.find_tables , rather than at the "Document" class level.
@amitsangwan007
@amitsangwan007 Ай бұрын
Hi there, how do I create a new pdf and not just copy paste and move in same pdf. Can we open 2 documents and use data from one doc to another. Anyway, I'll try myself, let's see. Currently Im planning to create a blank pdf and try to do this... Better suggestions I'll be welcomed, I'm new to this
@amitsangwan007
@amitsangwan007 Ай бұрын
New pdf: Doc2 = pymupdf.open() To copy page by page from one pdf to another: Doc2.insert_pdf(doc1, from_page =(int) Whole file is being copied not only a page, what am I doing wrong???
@PyMuPDF
@PyMuPDF Ай бұрын
@@amitsangwan007 Hello, you should do something like this: doc2.insert_pdf(doc1, from_page=0, to_page=1, start_at=-1). This would copy pages 1 & 2 from doc1 into doc2 at the end of the document (start_at =-1 means end of doc). You can learn more about inserting documents here: pymupdf.readthedocs.io/en/latest/document.html#Document.insert_pdf
@nitinraina1788
@nitinraina1788 2 ай бұрын
Do we need to purchase this .can we use this for free ?
@PyMuPDF
@PyMuPDF 2 ай бұрын
Hello - It can be used for free unless you want to use it in a closed-source proprietary project. PyMuPDF is an open source library available under both commercial and AGPL licenses.
@nitinraina1788
@nitinraina1788 2 ай бұрын
​@@PyMuPDFsorry i am new .but can i use it by preparing a software as .exe file and run on other system ?
@PyMuPDF
@PyMuPDF 2 ай бұрын
@@nitinraina1788 Yes, you can! Write your Python script using PyMuPDF, then use a tool like PyInstaller to convert it into a .exe file. Just install PyInstaller (pip install pyinstaller) and run pyinstaller --onefile your_script.py. This will package everything into a single executable you can run on other systems without needing Python installed.