4

我想通过让 imagemagick 对所有缩略图应用阴影来改变回形针中缩略图的处理。我坚持的是实际的 imagemagick 命令,它将拉开这个小奇迹。我尝试过的所有东西都会返回一个不正确缩放的阴影而没有原始图像。

def transformation_command
  scale, crop = @current_geometry.transformation_to(@target_geometry, crop?)
  trans = ""
  trans << " -resize \"#{scale}\""
  trans << " -crop \"#{crop}\" +repage" if crop
  # Apply Drop Shadow
  trans << " #{convert_options}" if convert_options? 
  trans
end

一个我试过...

def transformation_command
  scale, crop = @current_geometry.transformation_to(@target_geometry, crop?)
  trans = ""
  trans << " -resize \"#{scale}\""
  trans << " -crop \"#{crop}\" +repage" if crop
  trans << " \( +clone -background black -shadow 60x5+10+10 \) +swap -background none -layers merge +repage"
  trans << " #{convert_options}" if convert_options? 
  trans
end

我对 imagemagick 完全陌生,任何帮助将不胜感激。

4

2 回答 2

4

经过一些试验和错误并将我的头埋在文档中,我终于弄明白了。

has_attached_file :image, 
  :styles => { :thumb => ["100x100#", :png] }, 
  :convert_options => { :thumb => '\( +clone -background black -shadow 70x4+0+0 \) +swap -background none -layers merge +repage' }
  1. 确保您安装了最新版本的 ImageMagick。
  2. ["100x100#", :png] 会将图像转换为 png,因此投影是透明的。
  3. 在转换选项下,:thumb 只会将转换应用于 :thumb 样式,使用 :all 将转换应用于所有样式。
  4. 调整“70x4+0+0”以获得你想要的阴影。
于 2009-07-24T18:34:38.113 回答
1

我发现只使用 rmagick 界面而不是向 imagemagick 本身发送命令行选项要容易得多。

如果你使用 rmagick,你可以使用 shadow 方法。

img = Image.read('slide.png').first
shadow = img.shadow(0, 0, 0.0, '20%')

然后在阴影上合成图像。

我写了一篇关于使用 rmagick 的文章:http ://schf.uc.org/articles/2006/10/18/render-greatlooking-collages-with-ruby-and-rmagick

尝试阅读它可能会让您更好地理解。

我还为 rmagick 编写了一个抽象库,试图使其更易于使用。我称它为RubyShop,因为它试图模仿基于 Photoshop 层的合成。(我真的很讨厌这个名字,如果我重新启动这个项目,可能会改变它)

于 2009-07-23T15:59:21.513 回答