Plotting Plot Files
Plotting Plot Files
(OP)
If I am sent a plot file (*.plt) how do I open and/or plot it?
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS Come Join Us!Are you an
Engineering professional? Join Eng-Tips Forums!
*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail. Posting GuidelinesJobs |
|
RE: Plotting Plot Files
copy myplot.plt > LPT1 (or whatever port you are connected to). If you are using a network plotter, you may have to capture the printer port as a virtual port (lpt3 for instance) and then copy to it.
This is assuming your plotter is a similar model to the one the plot file was generated for.
There are companies that claim to be able to convert .plt to .dwg for a fee. If the drawing is important to you, it may be worthwhile checking it out on the Internet.
RE: Plotting Plot Files
copy /b %1 <insert the path to your plotter here>
cls
@echo off
echo -------------------------------------------
echo The plot file Has been sent to your Plotter
echo -------------------------------------------
For example for our office we use:
copy /b %1 \\Ntserver01\Oce9400R
cls
@echo off
echo ----------------------------------------------
echo The plot file has been sent to the Oce Plotter
echo ----------------------------------------------
Next open up Explorer, select View¦Options¦File Types tab and pick AutoCAD Plot and edit. Select New and in the Action space, type Plot plt file. In path, type the path to your newly created batch file (example: C:\Program Files\AutoCAD R14\SUPPORT\plotit.bat) Select OK and OK. Now when you right-click on a PLT file, you’ll see the option to plot the file.
What we need to do is just right click and fire a print for system printer r network printer.
RE: Plotting Plot Files
I have also created a shortcut on my desktop to drag and drop multiple plot files.
BUT...
1) All the DOS windows stay open, and have to be manually closed. Could there be some way to have these windows close automatically?
2) The print manager shows all of the plot files as "untitled" therefore I dont know what plot is what when I have multiple plots waiting. Does yours show the same?
I can't beleive that a simple copying of a file to the printer can not be done in windows...
Thanks for the info..
Dan
RE: Plotting Plot Files
I hope this helps!!
RE: Plotting Plot Files
Instead of typing the printer name like \\Ntserver01\Oce9400R above, you can map a LPT port to that printer. The command would be
NET USE LPT1 \\Ntserver01\Oce9400R
Depending you what OS you're running, you might want to add
/PERSISTENT:YES to the end to make the map stick.
Also, PLT files are postscript files. You can rename them as PS files and use another program, like GhostScript to print them.
Instead, we associate the PLT extension to AdobeDistiller so that when we double click on a PLT, it is converted to PDF. PDFs are easy to plot as well as share with vendors and other departments