ERP-system / erp_core /display_image.py
sarwarshafee8709809365's picture
deployment-1
c8e458d
raw
history blame contribute delete
374 Bytes
from erp_core.node_builder import graph
try:
image_path = "output_image.png"
# Get the image bytes
image_data = graph.get_graph(xray=True).draw_mermaid_png()
# Save bytes to file
with open(image_path, 'wb') as f:
f.write(image_data)
print(f"Image saved at {image_path}")
except Exception as e:
print(f"An error occurred: {e}")