You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The graph that I created output an image of size 32767x3822 pixels. The words however are still blurry even when zoomed in all the way. I tried looking through the files to see if I could find something relating to output size but couldn't find anything.
The text was updated successfully, but these errors were encountered:
Graphviz provides the size option to specify the maximum size of the output, so that could be implemented in the graphviz output script. You'll notice a few attributes such as --font-name are set via command line arguments to graphviz. On my "to-do" list is allowing the user to easily specify arbitrary arguments for graphviz such as the size attribute.
In the meantime, I would recommend outputting to a .dot file instead of a .png file. Call pycallgraph2 from within your script and specify the output type within the the GraphVizOutput:
I would suggest to use a dot viewer, such as xdot on linux. Besides avoiding the problems with large raster images, it also might support some searching, hightlighting, navigating through the hierarchy, etc.
The graph that I created output an image of size 32767x3822 pixels. The words however are still blurry even when zoomed in all the way. I tried looking through the files to see if I could find something relating to output size but couldn't find anything.
The text was updated successfully, but these errors were encountered: