如何在 Rails 中响应 PNG 或 JPG 并从 HTML 生成图像?

发布于 2024-10-19 11:26:59 字数 589 浏览 2 评论 0原文

我正在寻找一个宝石或解决方案来在控制器响应中生成图像。

如果可以在控制器中执行以下操作,那就太好了:

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 技术交流群。

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

发布评论

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

评论(1

小女人ら 2024-10-26 11:26:59

在这里查看:http://weblog.rubyonrails.org/2006 /12/19/using-custom-mime-types

Mime::Type.register "image/png", :png

# then in your controller action
def show
  respond_to do |format|
    format.html { }
    format.png { }
  end
end

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就像 wkhtmltopdfpdfkit 一样,但它很容易使用。

您也可以使用 pdfKIT gem,然后使用 imagemagick 将 PDF 转换为 PNG。这也很容易。

UPD

我不使用 SnapShot 我更喜欢使用 IMGKit gem

https://github.com/csquared/IMGKit

Check out here: http://weblog.rubyonrails.org/2006/12/19/using-custom-mime-types

Mime::Type.register "image/png", :png

# then in your controller action
def show
  respond_to do |format|
    format.html { }
    format.png { }
  end
end

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 for wkhtmltopdf 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 use IMGKit gem

https://github.com/csquared/IMGKit

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