在 Windows 8 中为用户帐户编程是否有任何好的资源?我想使用一个 exe,在我的系统路径中说“png2eps.exe”,并允许右键单击上下文将 png 转换为 eps 文件。
参数当然是我右键单击的文件。有点像如何使用 Acrobat Distiller 将 postscript 文件转换为 pdf。
在 Windows 8 中为用户帐户编程是否有任何好的资源?我想使用一个 exe,在我的系统路径中说“png2eps.exe”,并允许右键单击上下文将 png 转换为 eps 文件。
参数当然是我右键单击的文件。有点像如何使用 Acrobat Distiller 将 postscript 文件转换为 pdf。
那很简单!
将您的 png2eps.exe 复制到系统文件夹(例如 c:\Windows\ 或 c:\windows\system32)。
之后,创建txt文件并放入:
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\.png\shell\png2eps]
@="Convert PNG to EPS now!"
[HKEY_CLASSES_ROOT\.png\shell\png2eps\command]
@="png2eps CMD \"%1\""
其中: CMD - png2esp 的 cmd 开关和选项。\"%1\" - 从 shell 输入文件名。
保存 txt,并将其扩展名更改为 reg(例如之前:file.txt 之后:file.reg)。2单击reg文件并导入注册表。
菜单项“立即将 PNG 转换为 EPS!” 只有当您为选定的 png 文件调用它时,您才会在上下文菜单中看到它。