2

我有一个从 API 获取图像 url 的 sinatra 应用程序,我想缩放它们然后提供它们而不将它们存储在服务器上。我见过的大多数 gem 只获取本地图像,然后在队列中处理每个图像。我只需要缩放五个图像并将它们显示在页面上。有没有快速的方法来做到这一点?

更多说明:

我需要一种从外部获取图像的方法(例如 notmysite.com/img.jpg),并让代码在页面上提供缩放图像。我不能用 css 或其他前端方法来做到这一点,因为这个页面将由一个脚本渲染,该脚本会扭曲前端缩放的图像。

4

2 回答 2

3

Dragonfly 使用 imagemagick 来缩放图像。这是我从以前用MiniMagick完成的东西中拼凑出来的一些代码,所以它会非常相似。

将自己的文件放入Tempfile我在这里用FaradayTypheous做过这个。然后使用魔法对其进行缩放!

require 'faraday'
require 'faraday_middleware'
#require 'faraday/adapter/typhoeus' # see https://github.com/typhoeus/typhoeus/issues/226#issuecomment-9919517 if you get a problem with the requiring
require 'typhoeus/adapters/faraday'

configure do
  Faraday.default_connection = Faraday::Connection.new( 
    :headers => { :accept =>  'image/*',
    :user_agent => "Sinatra via Faraday"}
  ) do |conn|
    conn.use Faraday::Adapter::Typhoeus
  end
end

helpers do
  def grab_image_and_scale
    response = Faraday.get url # you'll need to supply this variable somehow, your choice
    filename = "SOMETHING.jpg"
    tempfile = Tempfile.open(filename, 'wb') { |fp| fp.write(response.body) }

    thumb = MiniMagick::Image.open( tempfile.path )
    thumb.thumbnail( "75x75" )
    thumb.write( File.join settings.public, "images", "thumb_#{filename}") 

    scaled = MiniMagick::Image.open( secure_path )
    scaled.resize( "600" )
    scaled.write( File.join settings.public, "images", "scaled_#{filename}")
  end
end

我将留给您解决如何将公共图像文件夹的路径更改为临时文件(如果您分享它是如何完成的,那就太好了:)

于 2013-01-12T00:13:43.140 回答
0

一种与 Ruby 或 sinatra 无关的方法是向HTML 标记添加widthheight属性。img你最终会得到这样的东西:

<img src="img.source.from.API.JPG" width="2000px" height="100px" />

编辑

另一种方法是使用 javascript 更改维度,如下所示:https ://stackoverflow.com/a/11333825/693597 。您可能会考虑编写 JS 文件并将其包含在 HTML 的标头中。

于 2013-01-11T21:24:49.883 回答