Feb 25, 2002 #1 GaryN IS-IT--Management Apr 3, 2002 1 GB Is there anyway to save a canvas's image to file directly in TCL on the mac?
Feb 25, 2002 #2 nsh Programmer Jan 5, 2002 4 RU You can use canvas postscript command. (See man pages). Code: .c postscript -file ./image.ps And then convert it Code: exec convert ./image.ps gif:./image.gif Upvote 0 Downvote
You can use canvas postscript command. (See man pages). Code: .c postscript -file ./image.ps And then convert it Code: exec convert ./image.ps gif:./image.gif