Merge branch 'main' of https://github.com/plexx-dev/Nassi-Shneiderman-Diagramm-Generator into main
This commit is contained in:
@@ -29,10 +29,10 @@ class NassiShneidermanDiagram:
|
||||
h += inst.getblksize()
|
||||
return int(h)
|
||||
|
||||
def convert_to_image(self, filepath: str, filename: str, x_size: int=200):
|
||||
def convert_to_image(self, filepath: str, x_size: int=200):
|
||||
image_y_sz = self._get_image_height()
|
||||
logging.info(f"Saving NSD to {filename}.png...")
|
||||
with NSD_writer(filepath, filename, x_size, image_y_sz):
|
||||
logging.info(f"Saving NSD to {filepath}.png...")
|
||||
with NSD_writer(filepath, x_size, image_y_sz):
|
||||
x, y = 0, 0
|
||||
|
||||
for instruction in self.instructions:
|
||||
|
||||
Reference in New Issue
Block a user