如何在 Rails 中响应 PNG 或 JPG 并从 HTML 生成图像?
我正在寻找一个宝石或解决方案来在控制器响应中生成图像。
如果可以在控制器中执行以下操作,那就太好了:
respond_to :html, :png
def show
...
respond_to do |format|
format.html
format.png { ??? } # some html to png converter
end
end
当请求 png
格式时,响应将使用模板进行处理:
#show.png.haml
%h1
Some title
%p
Some content
结果应该是图像。
我了解pdf
生成解决方案PDFKit,虾 正在寻找图像生成。
有人知道工作解决方案/示例吗?任何起点都将非常感激。
I am looking for a gem or solution to generate image in controller response.
It would be nice if it's possible to do in controller like that:
respond_to :html, :png
def show
...
respond_to do |format|
format.html
format.png { ??? } # some html to png converter
end
end
When the png
format is requested the response handles with template:
#show.png.haml
%h1
Some title
%p
Some content
The result should be an image.
I know about pdf
generation solutions PDFKit, prawn and am looking for image generation.
Does anybody know working solution/example? Any starting point would be very appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在这里查看:http://weblog.rubyonrails.org/2006 /12/19/using-custom-mime-types
UPD
图像生成怎么样。如果您需要将 HTML 页面转换为图像。您可以使用
wkhtmltoimage
http://code.google.com/p/wkhtmltopdf/downloads/detail?name=wkhtmltoimage-0.10.0_beta2-static-amd64.tar.bz2&can=4&q=
没有 gem就像
wkhtmltopdf
的pdfkit
一样,但它很容易使用。您也可以使用
pdfKIT
gem,然后使用 imagemagick 将 PDF 转换为 PNG。这也很容易。UPD
我不使用
SnapShot
我更喜欢使用IMGKit
gemhttps://github.com/csquared/IMGKit
Check out here: http://weblog.rubyonrails.org/2006/12/19/using-custom-mime-types
UPD
What about image generating. If you need to convert your HTML page into image. You can use
wkhtmltoimage
http://code.google.com/p/wkhtmltopdf/downloads/detail?name=wkhtmltoimage-0.10.0_beta2-static-amd64.tar.bz2&can=4&q=
There is no gem like
pdfkit
forwkhtmltopdf
but it is easy to use.Also you can use
pdfKIT
gem and after that convert PDF to PNG with imagemagick. That is quite easy too.UPD
Istead of using
SnapShot
I prefer to useIMGKit
gemhttps://github.com/csquared/IMGKit