Hopefully fix of issue 2790 for non-Latin-1 letters.

svn: r12327
This commit is contained in:
Peter Landgren 2009-03-11 19:40:59 +00:00
parent ff3e3ddf66
commit b93aac2667

View File

@ -427,8 +427,7 @@ class GVPsDoc(GVDocBase):
dotfile.close() dotfile.close()
# Generate the PS file. # Generate the PS file.
os.system( 'dot -Tps2 -o"%s" "%s"' % (self._filename, tmp_dot) ) os.system( 'dot -Tps:cairo -o"%s" "%s"' % (self._filename, tmp_dot) )
# Delete the temporary dot file # Delete the temporary dot file
os.remove(tmp_dot) os.remove(tmp_dot)
@ -754,7 +753,7 @@ class GVPdfGsDoc(GVDocBase):
os.close( handle ) os.close( handle )
# Generate PostScript using dot # Generate PostScript using dot
command = 'dot -Tps -o"%s" "%s"' % ( tmp_ps, tmp_dot ) command = 'dot -Tps:cairo -o"%s" "%s"' % ( tmp_ps, tmp_dot )
os.system(command) os.system(command)
# Add .5 to remove rounding errors. # Add .5 to remove rounding errors.