Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.

PDF Import into AutoCAD

Anonymous

PDF Import into AutoCAD

Anonymous
Not applicable

I have a 16 page PDF file that I would like to import into AutoCAD and have each page from the PDF come in as individual AutoCAD drawings/sheets.

0 Likes
Reply
Accepted solutions (1)
5,301 Views
11 Replies
Replies (11)

cadffm
Consultant
Consultant

And what is your problem/question?

 

Import only one page to a file, each per each for every pdf page,

or import all in one file.

 

Creating Layouts for your drawing, thats your part and not part of the PdfImport-Function.

 

What is your problem or question now?

Sebastian

0 Likes

Anonymous
Not applicable

So each page of the PDF have to be imported separately?

0 Likes

john.vellek
Alumni
Alumni
Accepted solution

Hi @richard.postak,

I see that you are visiting as a new member to the AutoCAD forum. Welcome to the Autodesk Community!

 

 

If you want to bring all the sheets from your PDF at once, use PDFATTACH. Then once the pages are in your drawing you can use PDFIMPORT to convert each sheet to AutoCAD geometry if they are vector-based.

 

 


John Vellek


Join the Autodesk Customer Council - Interact with developers, provide feedback on current and future software releases, and beta test the latest software!

Autodesk Knowledge Network | Autodesk Account | Product Feedback
0 Likes

cadffm
Consultant
Consultant

@Anonymous

Yes, separatly

 

john.vellek screencast is a nice workaround for the half work.

 

Another solution is programming, here a simple(dirty) snipped for testing:

(defun c:PDFIMPORT+ (/ file n c d)
(and
(setq file (getfiled "PDF for Import" "" "pdf" 8))
(setq c (getint "\nHow many pages from 1 to ?: "))
(setq d (getreal "\nDistance for inserting multiple pages (X-Axis): "))
(setq n 0)
(repeat c (command "_.-PDFIMPORT" "" file (1+ n) "_non" (list (* n d) 0 0) 1 0)(setq n (1+ n)))
)
(princ)
)

 

Sebastian

john.vellek
Alumni
Alumni

Hi @Anonymous,

 

I am checking back to see if my post or Sebastian's helped you with your problem. Please mark a post or posts as accepted solutions if they resolved the issue or give me a bit more detail on this issue so we can continue to work towards getting this solved.

 

 

 

Please hit the Accept as Solution button if a post or posts solves your issue or answers your question.


John Vellek


Join the Autodesk Customer Council - Interact with developers, provide feedback on current and future software releases, and beta test the latest software!

Autodesk Knowledge Network | Autodesk Account | Product Feedback
0 Likes

Anonymous
Not applicable

Works like magic 🙂 Thanks!

0 Likes

maratovich
Advisor
Advisor

For those who find it difficult to use Lisp:

 

 

 

---------------------------------------------------------------------
Software development
Automatic creation layouts and viewport. Batch printing drawings from model.
www.kdmsoft.net
0 Likes

S_S_SS
Advocate
Advocate

  thanks it is great
can this lisp get number of pages automatically and don't ask me for it ?  
and i want to get lisp for more pdf files at one time can i get that ?? 

0 Likes

S_S_SS
Advocate
Advocate

thanks sir ....
can this lisp get number of pages automatically and don't ask me for it ?  
and i want to get lisp for more pdf files at one time can i get that ?? 

0 Likes

maratovich
Advisor
Advisor

@S_S_SS  написал (-а):

  can this lisp get number of pages automatically and don't ask me for it ?  
and i want to get lisp for more pdf files at one time can i get that ?? 


Use this - AutoImportCAD 

---------------------------------------------------------------------
Software development
Automatic creation layouts and viewport. Batch printing drawings from model.
www.kdmsoft.net
0 Likes