Setup & Download WinGraphviz Object |
|||
| Reguirements | Download files | Install / Uninstall | Download and build source code | Test | |||
Requirements:
Sopported PlatformAnd
You may need Microsoft Installer Redistributable for WinGraphviz_v1.xx.x.msi files on Win9x / NT 4.0
Download binary files :
| Filename | Description |
| Binary File:WinGraphviz_v1.02.25s.cab | ver1.02.25,2004 4/28 ,cab file with digital signature |
| Binary File:WinGraphviz_v1.02.24.msi | ver1.02.24,2003 08/10 ,Self Install file |
| Binary File:WinGraphviz_v1.02.24.cab | ver1.02.24,2003 08/10 ,cab file |
| Binary File:WinGraphviz_v1.02.20.msi | ver1.02.20,2003 06/30 ,Self Install file |
| Binary File:WinGraphviz_v1.02.20.cab | ver1.02.20,2003 06/30 ,cab file |
Download source code :
| Filename | Description |
| Source File:WinGraphviz_v1.02.25.src.zip | ver1.02.25, 2005 1/20, source code of wingraphviz |
| Source File:graphviz-1.8.10.src.zip | ver1.8.10, sourcecode of graphviz |
| Source File:freetype.src.zip | ver1.3.1 ,sourcecode of freetype |
| Source File:libjpeg.src.zip | ver6b,sourcecode of libjpeg |
| Source File:libpng.src.zip | ver1.2.5,sourcecode of libpng |
| Source File:zlib.src.zip | ver1.1.4 ,sourcecode of zlib |
Install (WinGraphviz_v1.xx.x.msi)
Download Binary File:"WinGraphviz_v1.xx.x.msi" on your local file system.
Run "WinGraphviz_v1.xx.x.msi"
Install (WinGraphviz_v1.xx.x.cab)
Download Binary File:"WinGraphviz_v1.xx.x.cab" on your local file system.
If you install previous version WinFraphviz ,uninstall and delete it on your system
Unzip the file to the system dicroty "\[Windows]\SYSTEM32"
Open a Command Window
if your windows is Win98/me then run "regserver.exe WinGraphviz.dll" to regist it on your system
if your windows is WinNT/2000/XP then run "regsvr32.exe WinGraphviz.dll" to regist it on your system
Uninstall (WinGraphviz_v1.xx.x.msi)
Uninstall from control panel
Uninstall (WinGraphviz_v1.xx.x.cab)
Open a Command Window
Goto the system dicroty "\[Windows]\SYSTEM32"
if your windows is Win98/me then run "regserver.exe WinGraphviz.dll /u" to unregist it on your system
if your windows is WinNT/2000/XP then run "regsvr32.exe WinGraphviz.dll /u" to unregist it on your system
Delete WinGraphviz.dll
The following is a VBScript for Testing WinGraphviz.DOT in your Computer.
'Create DOT Object
Dim dot
Set dot = CreateObject("Wingraphviz.dot")
if dot is Nothing then
Msgbox "Unable to load the object Wingraphviz.dot"
end if
'Sample data of DOT
strCMD2 = "digraph G {A -> B -> C -> D;}"
'Check DOT Format
if(not dot.Validate(strCMD2)) then
msgbox "DOT Format Error"
End if
'Generate SVG
Dim strSVG
strSVG = dot.ToSVG(strCMD2)
if(len(strSVG) > 0) then
Msgbox "DOT as SVG output is " + vbcrlf + strSVG
end if
'Generate TextImage(PostScript)
Dim strPS
strPS = dot.ToPS(strCMD2)
if(len(strPS) > 0) then
Msgbox "DOT as PostScript output is " + vbcrlf + strPS
end if
'Generate BinaryImage(PNG)
Dim Img
Set Img = dot.ToPNG(strCMD2)
if Img is Nothing then
Msgbox "Unable to generate to PNG"
end if
Dim FilePath
FilePath = "c:\test.PNG"
if Img.save(FilePath) then
Msgbox "BinaryImage Type is " + Img.Type + vbcrlf + _
"Save Image at " + FilePath
else
Msgbox "Unable to save image at " + FilePath
end if
'Release Resource
Set Img = Nothing
Set dot = Nothing
|
Submit bug reports or suggestions for the WinGraphviz ood Tsen.