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

相关推荐
武藤一雄34 分钟前
WPF处理耗时操作的7种方法
microsoft·c#·.net·wpf
武藤一雄1 小时前
C#常见面试题100问 (第一弹)
windows·microsoft·面试·c#·.net·.netcore
l1t3 小时前
DeepSeek总结的用 C# 构建 DuckDB 插件说明
前端·数据库·c#·插件·duckdb
iReachers4 小时前
恒盾C#混淆加密大师 1.4.5 最新2026版本发布 (附CSDN下载地址)
c#·c#混淆·c#加密·wpf加密·winform加密
合利士智能装备4 小时前
人形机器人电机的制造标准,为何普遍低于汽车电机?
机器人·制造
taxunjishu4 小时前
Profinet转Modbus TCP柔性制造工业自动化集成方案
网络协议·自动化·制造
历程里程碑5 小时前
43. TCP -2实现英文查中文功能
java·linux·开发语言·c++·udp·c#·排序算法
月巴月巴白勺合鸟月半5 小时前
一次PDF文件的处理(二)
pdf·c#
开开心心就好5 小时前
免费无广告的礼金记账本,安卓应用
java·前端·ubuntu·edge·pdf·负载均衡·语音识别
优化控制仿真模型5 小时前
2015-2025年12月英语六级历年真题及答案PDF电子版(含听力音频)
经验分享·pdf