Graphviz not supporting UTF-8 encoding

Viewed 6770

I have created a dot file.which contain some korean language in some node's label .i created png file with help of graphvig tool but that created png doesn't support korean language it appear as square box. if i create svg file then it works fine. help me how to resolve this.

5 Answers

I met the same problem, and adding the following lines helped me:

strict digraph { 
node [ fontname="Adobe Kaiti Std" ];
edge [ fontname="Adobe Heiti Std" ];
} 
Related