Source code for pm4py.visualization.common.visualizer
'''
PM4Py – A Process Mining Library for Python
Copyright (C) 2024 Process Intelligence Solutions UG (haftungsbeschränkt)
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see this software project's root or
visit <https://www.gnu.org/licenses/>.
Website: https://processintelligence.solutions
Contact: info@processintelligence.solutions
'''
import shutil
from pm4py.util.vis_utils import (
human_readable_stat,
get_arc_penwidth,
get_trans_freq_color,
get_base64_from_gviz,
get_base64_from_file,
)
from pm4py.util import vis_utils
[docs]
def save(gviz, output_file_path):
"""
Save the diagram
Parameters
-----------
gviz
GraphViz diagram
output_file_path
Path where the GraphViz output should be saved
"""
render = gviz.render(cleanup=True)
shutil.copyfile(render, output_file_path)
[docs]
def view(gviz):
"""
View the diagram
Parameters
-----------
gviz
GraphViz diagram
"""
if vis_utils.check_visualization_inside_jupyter():
vis_utils.view_image_in_jupyter(gviz.render())
else:
return gviz.view(cleanup=True)