导轨用柔性纸
有人可以帮助我了解如何在我的 Rails 应用程序中使用 Flexpaper 吗?它需要 swf 格式,我们的 Rails wud 将任何支持的文件类型转换为 pdf。我对如何进一步将 pdf 即时转换为 swf 并通过 Flexpaper 应用程序显示它一无所知。如果有人意识到这一点,则需要您的帮助。谢谢
can someone out there help me out with understanding how to use flexpaper for my rails application? it needs swf formats, and our rails wud converted any supported file type to pdf. i'm clueless on how to proceed further with converting pdf to swf on the fly and displaying it via the flexpaper app. if any1s aware of this, ur help is needed. thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
然后你可以使用pdf2swf工具将pdf从你的rails应用程序中的控制器(或模型)转换为swf 。这是我使用的片段:
system("usr/local/bin/pdf2swf #{Rails.root}/public/#{pdffilename} -o #{Rails.root}/public/#{swffilename}.swf -f -T 9 -t -s storeallcharacters")
现在您的 swf 将生成。现在您可以 flexpaper 了解更多详细信息。
希望这有帮助。
Then you can use pdf2swf tool to convert the pdf to swf from your controller(or model) in your rails applicatoin. Here is the snippet I have used :
system("usr/local/bin/pdf2swf #{Rails.root}/public/#{pdffilename} -o #{Rails.root}/public/#{swffilename}.swf -f -T 9 -t -s storeallcharacters")
Now your swf will be generated .Now you can flexpaper for more details .
Hope this helps .
您也可以尝试这个 gem,而不是直接花钱: https://github.com/Krule/pdf_to_swf -回形针处理器
You could also try this gem rather than shelling out directly: https://github.com/Krule/pdf_to_swf-paperclip-processor