MES系统使用C#实现SolidWorks图纸批量转换PDF在线查看

通过 eDrawings API 批量将 SOLIDWORKS 文件导出为 PDF(无需 SOLIDWORKS 软件)。

这个用 C# 开发的控制台应用程序允许通过 SOLIDWORKS eDrawings 的免费版本及其 API 将 SOLIDWORKS、DXF、DWG 文件导出为 PDF。使用此工具无需安装 SOLIDWORKS。

运行工具

此应用程序可以从命令行运行,并需要两个必填参数和一个可选参数,如下所述:

示例命令
exportpdf.exe "C:\SOLIDWORKS Drawings" "test.slddrw""C:\PDFs"

using System;

using System.Collections.Generic;

using System.Drawing.Printing;

using System.IO;

using System.Linq;

using System.Windows.Forms;

using eDrawings.Interop;

using eDrawings.Interop.EModelViewControl;

namespace ExportPdf

{

static class Module1

{

private static EModelViewControl m_Ctrl;

private static List<string> m_Files;

private static string m_OutDir;

public static void Main()

{

try

{

ExtractInputParameters();

var eDrwCtrl = new EDrawingsHost();

eDrwCtrl.ControlLoaded += OnEdrawingsControlLoaded;

var winForm = new Form();

winForm.Controls.Add(eDrwCtrl);

eDrwCtrl.Dock = DockStyle.Fill;

winForm.ShowIcon = false;

winForm.ShowInTaskbar = false;

winForm.WindowState = FormWindowState.Minimized;

winForm.ShowDialog();

}

catch (Exception ex)

{

PrintError(ex.Message);

}

}

private static void ExtractInputParameters()

{

string[] args = Environment.GetCommandLineArgs();

string input = args[1];

string filter = args[2];

m_OutDir = "";

if (args.Length > 3)

{

m_OutDir = args[3];

}

if (!string.IsNullOrEmpty(m_OutDir))

{

if (!Directory.Exists(m_OutDir))

{

Directory.CreateDirectory(m_OutDir);

}

}

if (Directory.Exists(input))

{

m_Files = Directory.GetFiles(input, filter, SearchOption.AllDirectories).ToList();

}

else if (File.Exists(input))

{

m_Files = new List<string>();

m_Files.Add(input);

}

else

{

throw new Exception("Specify input file or directory");

}

}

public static void OnEdrawingsControlLoaded(EModelViewControl ctrl)

{

Console.WriteLine(string.Format("Starting job. Exporting {0} file(s)", m_Files.Count));

m_Ctrl = ctrl;

global::ExportPdf.Module1.m_Ctrl.OnFinishedLoadingDocument += OnDocumentLoaded;

global::ExportPdf.Module1.m_Ctrl.OnFailedLoadingDocument += OnDocumentLoadFailed;

global::ExportPdf.Module1.m_Ctrl.OnFinishedPrintingDocument += OnDocumentPrinted;

global::ExportPdf.Module1.m_Ctrl.OnFailedPrintingDocument += OnPrintFailed;

PrintNext();

}

public static void PrintNext()

{

if (m_Files.Any())

{

string filePath;

filePath = m_Files.First();

m_Files.RemoveAt(0);

m_Ctrl.CloseActiveDoc("");

m_Ctrl.OpenDoc(filePath, false, false, false, "");

}

else

{

Console.WriteLine("Completed");

Environment.Exit(0);

}

}

public static void OnDocumentLoaded(string fileName)

{

MessageBox.Show("3");

const string PRINTER_NAME = "Microsoft Print to PDF";

const int AUTO_SOURCE = 7;

Console.WriteLine(string.Format("Opened {0}", fileName));

m_Ctrl.SetPageSetupOptions(EMVPrintOrientation.eLandscape, (int)PaperKind.A4, 100, 100, 1, AUTO_SOURCE, PRINTER_NAME, 0, 0, 0, 0);

string pdfFileName = Path.GetFileNameWithoutExtension(fileName) + ".pdf";

string outDir;

if (!string.IsNullOrEmpty(m_OutDir))

{

outDir = m_OutDir;

}

else

{

outDir = Path.GetDirectoryName(fileName);

}

string pdfFilePath;

pdfFilePath = Path.Combine(outDir, pdfFileName);

Console.WriteLine(string.Format("Exporting {0} to {1}", fileName, pdfFilePath));

m_Ctrl.Print5(false, fileName, false, false, true, EMVPrintType.eOneToOne, 1, 0, 0, true, 1, 1, pdfFilePath);

}

public static void OnDocumentLoadFailed(string fileName, int errorCode, string errorString)

{

PrintError(string.Format("Failed to load {0}: {1}", fileName, errorString));

PrintNext();

}

public static void OnDocumentPrinted(string printJobName)

{

Console.WriteLine(string.Format("'{0}' export completed", printJobName));

PrintNext();

}

public static void OnPrintFailed(string printJobName)

{

PrintError(string.Format("Failed to export '{0}'", printJobName));

PrintNext();

}

public static void PrintError(string msg)

{

Console.ForegroundColor = ConsoleColor.Red;

Console.WriteLine(msg);

Console.ResetColor();

}

}

}

主要代码模块

  1. Main方法:

    • 程序的入口点,捕获可能出现的异常。
    • 创建EDrawingsHost实例eDrwCtrl,并设置其ControlLoaded事件处理程序为OnEdrawingsControlLoaded
    • 创建一个Form,将eDrwCtrl添加到Form的控件中,并设置一些属性后以对话框形式显示。
  2. ExtractInputParameters方法:

    • 从命令行参数中提取输入参数,包括输入文件或文件夹路径、筛选器和可选的输出文件夹路径。
    • 如果输出文件夹不存在,则创建该文件夹。
    • 如果输入是一个目录,则获取该目录下符合筛选条件的所有文件路径存入m_Files;如果输入是一个文件,则将该文件路径存入m_Files
  3. OnEdrawingsControlLoaded方法:

    • 当 eDrawings 控件加载完成时触发。
    • 打印开始任务的信息,并设置m_Ctrl的各种事件处理程序。
    • 调用PrintNext方法开始处理第一个文件。
  4. PrintNext方法:

    • 如果m_Files中有文件,则取出第一个文件路径,关闭当前打开的文档,打开这个文件。
    • 如果m_Files为空,则打印任务完成信息并退出程序。
  5. OnDocumentLoaded方法:

    • 当文档加载成功时触发。
    • 设置页面打印选项,确定输出 PDF 文件的名称和路径。
    • 使用m_Ctrl的打印方法将当前文档打印为 PDF 文件。
  6. OnDocumentLoadFailed方法:

    • 当文档加载失败时触发。
    • 打印错误信息,并调用PrintNext方法继续处理下一个文件。
  7. OnDocumentPrinted方法:

    • 当文档打印成功时触发。
    • 打印文档导出完成的信息,并调用PrintNext方法继续处理下一个文件。
  8. OnPrintFailed方法:

    • 当文档打印失败时触发。
    • 打印错误信息,并调用PrintNext方法继续处理下一个文件。
  9. PrintError方法:

    • 将错误信息以红色字体打印到控制台,然后恢复控制台颜色。

样例代码下载地址:https://download.csdn.net/download/bjhtgy/89789940

相关推荐
黄焖鸡能干四碗28 分钟前
智能制造工业大数据应用及探索方案(PPT文件)
大数据·运维·人工智能·制造·需求分析
flysh051 小时前
如何利用 C# 内置的 Action 和 Func 委托
开发语言·c#
逑之2 小时前
C语言笔记1:C语言常见概念
c语言·笔记·c#
GAOJ_K2 小时前
丝杆模组精度下降的预警信号
人工智能·科技·机器人·自动化·制造
福大大架构师每日一题3 小时前
2026年1月TIOBE编程语言排行榜,Go语言排名第16,Rust语言排名13。C# 当选 2025 年度编程语言。
golang·rust·c#
wangnaisheng3 小时前
【C#】gRPC的使用,以及与RESTful的区别和联系
c#
JosieBook3 小时前
【开源】基于 C# 和 Halcon 机器视觉开发的车牌识别工具(附带源码)
开发语言·c#
龙潜月七3 小时前
做一个背单词的脚本
数据库·windows·c#·aigc·程序那些事
寻星探路4 小时前
【Python 全栈测开之路】Python 基础语法精讲(一):常量、变量与运算符
java·开发语言·c++·python·http·ai·c#
故事不长丨4 小时前
深度解析C#文件系统I/O操作:File类与FileInfo类的核心用法与场景对比
c#·文件系统·file·fileinfo·i/o操作·i/o流