I am trying to visualize a set of RDF turtles and I am using the following the code:
!pip install pydotplus
!pip install graphviz
import io
import pydotplus
from IPython.display import display, Image
from rdflib.tools.rdf2dot import rdf2dot
def visualize(g):
stream = io.StringIO()
rdf2dot(g, stream, opts = {display})
dg = pydotplus.graph_from_dot_data(stream.getvalue())
png = dg.create_png()
display(Image(png))
visualize(g)
Here, the g inside visualize(g) is my rdfgraph.
An image is indeed created but it's too small and I donot know how to save it. Can anyone help me please?
You can use opencv to resize images.
Example