环境 OSX 10.9.5
我正在尝试安装swftools,以便我可以使用pdf2swf。我正在通过HomeBrew安装。我已经看到各种notes关于pdf2swf如果以前没有安装依赖项而无法安装。所以使用我使用的链接命令:
$ brew install freetype libjpeg giflib swftools
它完成没有错误 - 除了没有安装pdf2swf。当我查看usr / local / bin时,我看到其他swftools已成功安装。
有谁知道可能出错了什么?
更新:为了完整性,如果有人遇到这个问题,希望在AIR桌面应用中使用pdf2swf:你不能。显然pdf2swf使用某些“AllowDomain”安全设置编译swf,没有选项不这样做。没有编辑源代码并自己编译pdf2swf,它似乎是一个负面因素。
答案 0 :(得分:2)
如果您查看brew公式:brew edit swftools
,则PDF支持来自xpdf
,默认情况下不包括此项,因为需要安装XQuartz:
brew instal swftools --with-xpdf
swftools: XQuartz is required to install this formula.
You can install with Homebrew Cask:
brew install Caskroom/cask/xquartz
You can download from:
https://xquartz.macosforge.org
Error: An unsatisfied requirement failed this build.
所以:
brew install swftools --with-xpdf