Difference between revisions of "Xmgrace"

From relax wiki
Jump to navigation Jump to search
(Created page with "== xmgrace == == See also == Category:External_programs")
 
Line 1: Line 1:
 
== xmgrace ==
 
== xmgrace ==
 +
 +
=== Convert to png ===
 +
Add this to the end of the xmgrace file
 +
 +
<pre>
 +
#Print out to
 +
@PRINT TO "/sbinlab2/tlinnet/output.png"
 +
@HARDCOPY DEVICE "PNG"
 +
@DEVICE "PNG" FONT ANTIALIASING on
 +
# Make white background transparent
 +
#@DEVICE "PNG" OP "transparent:on"
 +
@DEVICE "PNG" OP "compression:9"
 +
@PRINT
 +
</pre>
 +
 +
Then issue an "HARDCOPY" with xmgrace
 +
xmgrace -hardcopy xmgracefile.agr
  
 
== See also ==
 
== See also ==
 
[[Category:External_programs]]
 
[[Category:External_programs]]

Revision as of 11:12, 13 June 2013

xmgrace

Convert to png

Add this to the end of the xmgrace file

#Print out to
@PRINT TO "/sbinlab2/tlinnet/output.png"
@HARDCOPY DEVICE "PNG"
@DEVICE "PNG" FONT ANTIALIASING on
# Make white background transparent
#@DEVICE "PNG" OP "transparent:on"
@DEVICE "PNG" OP "compression:9"
@PRINT

Then issue an "HARDCOPY" with xmgrace

xmgrace -hardcopy xmgracefile.agr

See also