Update validation list

This commit is contained in:
Vinayak Mehta
2020-11-18 18:51:09 +05:30
parent 674b5f4336
commit 0183f8f462
3 changed files with 6 additions and 5 deletions
+2 -1
View File
@@ -211,7 +211,7 @@ class Lattice(BaseParser):
from ..ext.ghostscript import Ghostscript
self.imagename = "".join([self.rootname, ".png"])
gs_call = "-q -sDEVICE=png16m -o {} -r300 {}".format(
gs_call = "-q -sDEVICE=png16m -o {} -r900 {}".format(
self.imagename, self.filename
)
gs_call = gs_call.encode().split()
@@ -329,6 +329,7 @@ class Lattice(BaseParser):
table = Table(cols, rows)
# set table edges to True using ver+hor lines
table = table.set_edges(v_s, h_s, joint_tol=self.joint_tol)
# set table border edges to True
table = table.set_border()