unity插件调用打印机
public void Test() { string path = Application.streamingAssetsPath + @"\0.png,0,0,581,391";//从纸张的0. 0点,将图像调整为750×350点(计算:150mm/28.346 px/cm=529点,100mm/28.346 pm/cm=352点) 图片路径 string exepath = Application.streamingAssetsPath + @"\PrintImage.exe";//这个是需要下载的应用直接放到电脑上就行(调用打印机打印图片应用的路径) ProcessStartInfo info = new ProcessStartInfo(exepath);//指定启动进程时使用的一组值 info.Arguments = path;//获取或设置启动应用程序时要使用的一组命令行自变量 using (Process p = new Process()) { p.StartInfo = info; p.Start(); } }