Jump to content

Plotting multiple DWG files to multiple PDFs automatically


dflynn3386

Recommended Posts

Hi!

 

I'm trying to find a way to plot multiple (over a thousand) DWG files to PDF without doing each one manually. I've played around a little bit but without any luck. I'm using AutoCAD 2002 LT. Is there any way to do this?

 

I've also got little to no experience with the more complex settings and abilities of autocad so when explaining please do so in laymans terms.

 

Thanks very much to anyone that can help in advance! :)

 

PS. 2002 lt has no general publish (only publish to web) option and I have no idea how sheet sets work.

Link to comment
Share on other sites

Since is about LT, I believe that the only automation available is the script technology. Basically, you will need to replicate into a text file the calls of the commands to apply and also the answers to their options.

_OPEN [i]Drawing path 1st[/i]
_PLOT [i]Plotting options[/i]
_CLOSE
_OPEN [i]Drawing path 2nd[/i]
_PLOT [i]Plotting options[/i]
_CLOSE
;end of script

To establish the content, I suggest you to call the commands in command line mode (i.e. -PLOT) and note down the answers to their prompts. Please pay attention that if the path contains spaces will have to place it in quotes.

To create the list of the files to plot create a BAT file with the code below; next use Excel (or other spreadsheet application, for that matter) and build the script.

DIR /b *.* > drawings.txt

Link to comment
Share on other sites

Or you can use DWG TrueView, its free from autodesk website

In DWG TrueView you have the option to convert , model , layouts or both while adding files to batch plot

Link to comment
Share on other sites

Or you can use DWG TrueView, its free from autodesk website

In DWG TrueView you have the option to convert , model , layouts or both while adding files to batch plot

 

+1, +1, +1, +1, +1...

 

Plotting to PDF has improved tremendously since 2002.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...