implemented generation of multiples NSDs and spelling
This commit is contained in:
@@ -7,12 +7,14 @@ from interpreter.NassiShneidermann import NassiShneidermanDiagram
|
||||
from draw.Iinstruction import *
|
||||
|
||||
|
||||
def nassi(filepath: str, output_path: str, outputname: str, gui, font_filepath: Optional[str]=None):
|
||||
def nassi(input_path: str, output_path: str, outputname: str, gui, font_filepath: Optional[str]=None):
|
||||
NSD = NassiShneidermanDiagram(gui.debug_mode)
|
||||
|
||||
if font_filepath != None:
|
||||
NSD.set_font(font_filepath)
|
||||
NSD.load_from_file(filepath)
|
||||
NSD.convert_to_image((output_path + '/' + outputname), 500)
|
||||
|
||||
NSD.load_from_file(input_path)
|
||||
NSD.convert_to_image(output_path, outputname, 500)
|
||||
|
||||
|
||||
def output(values):
|
||||
|
||||
Reference in New Issue
Block a user