PDF Import into AutoCAD

PDF Import into AutoCAD

Anonymous
Not applicable
7,006 Views
11 Replies
Message 1 of 12

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
Accepted solutions (1)
7,007 Views
11 Replies
Replies (11)
Message 2 of 12

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
Message 3 of 12

Anonymous
Not applicable

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

0 Likes
Message 4 of 12

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
Message 5 of 12

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

Message 6 of 12

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
Message 7 of 12

Anonymous
Not applicable

Works like magic 🙂 Thanks!

0 Likes
Message 8 of 12

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
Message 9 of 12

S_S_SS
Advocate
Advocate

!!

0 Likes
Message 10 of 12

cadffm
Consultant
Consultant
0 Likes
Message 11 of 12

S_S_SS
Advocate
Advocate

!!

0 Likes
Message 12 of 12

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