I understand this is probably a dumb question to ask but i am stuck.
I have one SVG file. The file contains one design which i would like to plot using Graphtec FC8600 plotter.
I have plotter installed on my windows machine.
I am designing one windows form application which will plot the selected SVG file using graphtec plotter.
My initial understanding says, i can do plotting similar to printing. When i try to plot the SVG file using printDocument, the plotter receives the command but plots the SVG unrendered content, not the actual image.
I think i am missing something important here. I have already gone through available resources on google and SO.
Any help would be appreciated.
You can use a
WebBrowser
control to print your svg file.You can use
Navigate
method to navigate to the file path and then usingPrint
method, you can send the file to default printer. If you need to choose the printer, you can useShowPrintDialog
method.Example
MSDN Example