Takashi Soma wrote: > I don't have eps2eps. Is it in the LyX package? I run lyx-1.2.1-1.i386.rpm
attached > on Linux 7.1J. Using ps to eps in gsview32.exe and with the -depth 8 in eps > to xpm, the problem is still not solved. The problem seems related to the > way in which functions are defined for drawing line in ps script. The eps > file from GNUPLOT works fine. This phenomenon became evident after I > upgraed LyX from 1.6 to 2.1. 1.1.6 runs with gv and 1.3 with the internal xforms viewer. I suppose a problem with the colors of your eps-file. It is a grascale one and there maybe problems with the definition of these colors like gray56. Herbert -- http://www.educat.hu-berlin.de/~voss/lyx/
#!/bin/sh # $Id: eps2eps,v 1.3 2002/04/23 11:58:33 easysw Exp $ # "Distill" Encapsulated PostScript. OPTIONS="-dDEVICEWIDTH=250000 -dDEVICEHEIGHT=250000" while true do case "$1" in -*) OPTIONS="$OPTIONS $1" ;; *) break ;; esac shift done if [ $# -ne 2 ]; then echo "Usage: `basename $0` ...switches... input.eps output.eps" 1>&2 exit 1 fi exec gs -q -sDEVICE=epswrite "-sOutputFile=$2" -dNOPAUSE -dBATCH -dSAFER $OPTIONS "$1"