导轨用柔性纸

发布于 2024-09-30 08:31:07 字数 161 浏览 4 评论 0原文

有人可以帮助我了解如何在我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

所谓喜欢 2024-10-07 08:31:07
  • 你可以用prawn(或rails中可用的其他工具)生成pdf文件。或者也许你可以使用你的pdf文件
  • 然后你可以使用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 了解更多详细信息。

希望这有帮助。

  • You can generate pdf files with prawn( or other tools available in rails) .Or maybe you can use your pdf files
  • 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 .

猥琐帝 2024-10-07 08:31:07

您也可以尝试这个 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文