Q. How do I create a PDF file with a black background.
A. Export a postscript file, edit it and convert it to PDF using the following procedure:
1. Open the .cad file in CadStd Pro.
2. Export, choose "Postscript" and save the .ps file somewhere.
3. Open the .ps file with notepad (right mouse click on the file and choose "open with").
4. In notepad do Edit->Replace and change all "0 0 0 setrgbcolor" to "1 1 1 setrgbcolor".
5. Change the lines in the ps file that read
-----------from---------------
%Layer 0
1 1 1 setrgbcolor
------------------------------
--------------to--------------
%Layer 0
0 0 0 setrgbcolor
.1 .1 10.8 8.3 rectfill
S
1 1 1 setrgbcolor
------------------------------
Note: The above rectfill dimensions allow a .1 inch white border around the outside of a landscape A size drawing at scale 1. You might need to experiment with these values for drawings at other scales they are X Y Width Heigth.
If you would rather have a Prussian blue background (like a blueprint) use "0 .192 .324 setrgbcolor" for the rectfill instead of "0 0 0 setrgbcolor" for the value on the line after "%Layer 0".
If you have Adobe distiller you can use it to convert a postscript file to pdf.
Otherwise you can use GSview to accomplish the same task. To install GSview
download and install the following files:
1. gs860232.exe from http://pages.cs.wisc.edu/~ghost/doc/GPL/gpl860.htm
2. gsv49w32.exe from http://pages.cs.wisc.edu/~ghost/doc/GPL/gpl860.htm
To convert a ps file to PDF using GSview:
1. Open the .ps file with GSView.
2. Choose File->Convert.
3. Under "Device:" choose "pdfwrite".
4. Under "Resolution:" choose the resolution that you want.
5. Press OK and type a filename (include .pdf in the filename)
Keep in mind that changing the paper background color is probably a bad idea unless you have some special need. It might make your document look cool but if someone prints a large document from it they will use a large quantity of ink or toner.