Rails 文档转换建议
嗨,我目前正在学习 Rails,日复一日,我变得更加依恋。我想使用 Rails 构建一个具有类似功能的 Web 应用程序,例如 http://www.scribd.com/ 或 docstoc 。 Rails 或 Ruby 中的哪些组件/gems/插件/库可用于创建具有类似功能的 Web 应用程序。网络应用程序应该有
- Epub 转换为图像(jpeg)以及 pdf *PDF 转换为图像 (jpeg) 以及 epub **PDF 到 Epub
我只是想要关于使用 Rails 获取上述功能的库或插件等的建议。
期待尽快得到您的答复 谢谢
Hi I am currently learning rails, day to day i get more attached. I would like to use Rails to build a Web app with similar functionality like http://www.scribd.com/ or docstoc . What components/gems/plugins/libraries in Rails or Ruby could be used to create a web app with similar functionallity. The web app should be have the
- Epub coversion to image(jpeg) as well as pdf
*PDF conversion to image (jpeg) as well as epub
**PDF to Epub
I would just like suggestion on the libraries or plugins etc to use to obtain the above functions using Rails.
Looking forward to your answers soon
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我推荐rmagick。只需安装 Ghostscript,您就可以启动并运行 PDF 到 JPG/PNG 或或多或少的任何图像格式。
有关 rmagick 的更多信息:
http://rmagick.rubyforge.org/
rmagick 使用 ImageMagick 或 GraphicsMagick,这是图像处理的两个强大工具。两者都可以通过 GhostScript 使用 PDF。
至于 Epub,我确实认为你需要考虑做 epub -> pdf-> jpg/png。
您可以在 *nix 上阅读有关 epub 转换的信息:ubuntuforums.org/showthread.php?t=1491373
您很可能可以使用此工具 epub2pdf.com 将 epub 命令行转换为 pdf,然后使用 rmagick 进行 png/ .jpg。
I recommend rmagick. Just install ghostscript as well, and you should be up and running with PDF to JPG/PNG or more or less any image format.
More about rmagick:
http://rmagick.rubyforge.org/
rmagick uses ImageMagick or GraphicsMagick, which are two powerhorses for image handling. Both can use PDF through GhostScript.
As for Epub, I do think you need to look into doing epub -> pdf -> jpg/png.
You can read about epub conversion on *nix here: ubuntuforums.org/showthread.php?t=1491373
Most likely you can use this tool epub2pdf.com to do command line conversion of a epub to pdf, then use rmagick for a png/jpg.