| Author |
Message |
oktan
Joined: 26 Mar 2007 Posts: 29 Helped: 3 Location: Hungary
|
28 Apr 2008 23:01 Changing the back ground in cadence IC5141!! please help |
|
|
|
HI,
I have to make screen shots from cadence IC5141 for my thesis. the thing is my circuit is already big and having a black back ground makes it diff. to read when it is printed !! is there any way to change the back ground color of the Schematic editor from black to an other color??
cheers
|
|
| Back to top |
|
 |
meitolake
Joined: 07 Oct 2007 Posts: 141 Helped: 21 Location: China
|
29 Apr 2008 3:45 Changing the back ground in cadence IC5141!! please help |
|
|
|
| Why don't you print your schematic to file?
|
|
| Back to top |
|
 |
oktan
Joined: 26 Mar 2007 Posts: 29 Helped: 3 Location: Hungary
|
29 Apr 2008 16:56 Re: Changing the back ground in cadence IC5141!! please help |
|
|
|
well i cant do that because in my uni there is no plotter setting set for the cadence and i cant do that becouse of user premission.
but is there any other way to change the color of back ground???
cheers
|
|
| Back to top |
|
 |
meitolake
Joined: 07 Oct 2007 Posts: 141 Helped: 21 Location: China
|
30 Apr 2008 2:06 Re: Changing the back ground in cadence IC5141!! please help |
|
|
|
Type:
cd your_install_dir/tools/plot/bin && ./plotconfig &
your_install_dir is your software installation directory.
You can configure plotting, and print your schematic to ps file without any special premission.
|
|
| Back to top |
|
 |
Mazz
Joined: 03 Nov 2001 Posts: 467 Helped: 52
|
30 Apr 2008 5:22 Changing the back ground in cadence IC5141!! please help |
|
|
|
What we usually do is grab the image of the schematic in a small unix software (Xview) and invert colors (or make the inverted image black and white).
I hope it can help.
Mazz
|
|
| Back to top |
|
 |
Hughes
Joined: 10 Jun 2003 Posts: 709 Helped: 84
|
30 Apr 2008 7:38 Changing the back ground in cadence IC5141!! please help |
|
|
|
You can copy the "cdsplotinit" file to your home directory and renamed to ".cdsplotinit". Then you can choose a postscript printer and print to file.
If you still want to change the background, you change the xresources. Run the following command in a shell before you start icfb:
| Code: |
| echo "Opus.editor.background: white" | xrdb merge |
|
|
| Back to top |
|
 |
oktan
Joined: 26 Mar 2007 Posts: 29 Helped: 3 Location: Hungary
|
14 May 2008 12:01 Re: Changing the back ground in cadence IC5141!! please help |
|
|
|
| Quote: |
You can copy the "cdsplotinit" file to your home directory and renamed to ".cdsplotinit". Then you can choose a postscript printer and print to file.
If you still want to change the background, you change the xresources. Run the following command in a shell before you start icfb:
Code:
echo "Opus.editor.background: white" | xrdb merge
|
i copied the .cdsplotinit in home directory and workin directory. still i cant choose the printer or ploter. the list of printer is empty.
and also for 2nd solution i get this error:
echo "Opus.editor.background: white" | xrdb merge
xrdb: No such file or directory
xrdb: can't open file 'merge'
[1]+ Done icfb
this happens either in user or super user mode!!!
so please what im doing wrong?
thanks
Added after 2 minutes:
| Quote: |
Type:
cd your_install_dir/tools/plot/bin && ./plotconfig &
your_install_dir is your software installation directory.
You can configure plotting, and print your schematic to ps file without any special premission.
|
i tried this but i get this error:
[root(at)localhost plot]# cd /opt/cadence/IC5141/tools/plot/bin && ./plotconfig &
[1] 7960
[root(at)localhost plot]# ./plotconfig: line 9: cds_root: command not found
./plotconfig: line 10: /tools/plot/bin/plotconfigEXE: No such file or directory
what should i do?
Added after 1 minutes:
or this error in user mode:
[eda(at)localhost ~]$ cd /opt/cadence/IC5141/tools/plot/bin && ./plotconfig &
[1] 8005
[eda(at)localhost ~]$ /opt/cadence/IC5141/tools/plot/bin/plotconfigEXE: error while loading shared libraries: libCdsXmotif.so.2: cannot open shared object file: No such file or directory
[1]+ Done cd /opt/cadence/IC5141/tools/plot/bin && ./plotconfig
[eda(at)localhost ~]$
?????[/quote]
|
|
| Back to top |
|
 |
meitolake
Joined: 07 Oct 2007 Posts: 141 Helped: 21 Location: China
|
16 May 2008 9:50 Re: Changing the back ground in cadence IC5141!! please help |
|
|
|
Download and unzip the attachment, then type:
sh plotconfig
|
|
| Back to top |
|
 |
Hughes
Joined: 10 Jun 2003 Posts: 709 Helped: 84
|
16 May 2008 16:09 Re: Changing the back ground in cadence IC5141!! please help |
|
|
|
| oktan wrote: |
| Quote: |
You can copy the "cdsplotinit" file to your home directory and renamed to ".cdsplotinit". Then you can choose a postscript printer and print to file.
If you still want to change the background, you change the xresources. Run the following command in a shell before you start icfb:
Code:
echo "Opus.editor.background: white" | xrdb merge
|
i copied the .cdsplotinit in home directory and workin directory. still i cant choose the printer or ploter. the list of printer is empty.
and also for 2nd solution i get this error:
echo "Opus.editor.background: white" | xrdb merge
xrdb: No such file or directory
xrdb: can't open file 'merge'
[1]+ Done icfb
this happens either in user or super user mode!!!
so please what im doing wrong?
|
For the first one, you should modify the .cdsplotinti file as following:
| Code: |
| Encapsulated PostScript: \ |
modified to:
| Code: |
| EPS|Encapsulated PostScript: \ |
You can modify other plotters in same method -- Add a display name and a vertical bar before the plotter type.
For the second one, I am sorry I have made a typo above. This is the correct one:
| Code: |
| echo "Opus.editorBackground: white" | xrdb -merge |
|
|
| Back to top |
|
 |
oktan
Joined: 26 Mar 2007 Posts: 29 Helped: 3 Location: Hungary
|
16 May 2008 18:23 Re: Changing the back ground in cadence IC5141!! please help |
|
|
|
Wow, thanks Hughes you saved me a lot of time ..sweeet white back ground
cheeers[/quote]
|
|
| Back to top |
|
 |
eric_ec_chen
Joined: 26 May 2003 Posts: 55 Helped: 4
|
06 Jun 2008 4:57 Changing the back ground in cadence IC5141!! please help |
|
|
|
Dear Oktan,
In the "Virtuoso Schematic Composer User Guide" page 464 states that:
Changing the Background Color of a Schematic Window
To change the background color of the schematic window, do the following:
1. Open the .Xdefaults file in edit mode.
2. Change or add the option Opus.editorBackground from black to the color you
desire. For example:
Opus.editorBackground: green
3. At the UNIX prompt, type
xrdb -load ~/.Xdefaults
If you do not know where your .Xdefaults file is located, you can change the background
color of the schematic and layout windows by doing the following:
1. At the UNIX prompt, type
xrdb -query > xyz
This stores all the current system .Xdefaults variable settings in the file xyz.
2. In the xyz file, change or add the option Opus.editorBackground from black to the
color you desire. For example:
Opus.editorBackground: green
3. At the UNIX prompt, type
xrdb -load xyz
4. Restart your Cadence software.
|
|
| Back to top |
|
 |