From 736fb25b5650c9ea67fc34c8aabc1ad840330922 Mon Sep 17 00:00:00 2001 From: Vinayak Mehta Date: Tue, 18 Dec 2018 20:47:09 +0530 Subject: [PATCH] Change gs resolution --- camelot/parsers/lattice.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/camelot/parsers/lattice.py b/camelot/parsers/lattice.py index fb53e40..c1b8e0d 100644 --- a/camelot/parsers/lattice.py +++ b/camelot/parsers/lattice.py @@ -178,7 +178,7 @@ class Lattice(BaseParser): def _generate_image(self): self.imagename = ''.join([self.rootname, '.png']) - gs_call = '-q -sDEVICE=png16m -o {} -r600 {}'.format( + gs_call = '-q -sDEVICE=png16m -o {} -r300 {}'.format( self.imagename, self.filename) gs_call = gs_call.encode().split() null = open(os.devnull, 'wb')