21
21

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

画像の加工処理にMiniMagickを使う

Last updated at Posted at 2013-01-16

MiniMagick
https://github.com/minimagick/minimagick

A ruby wrapper for ImageMagick or GraphicsMagick command line.

ReadmeにはRMagickのメモリリークについての言及があり、そのsolutionとして作ったとの記述が。
これを使うことにしました。

##MiniMagickを使う

mini_magick.rb
require 'mini_magick'
image = MiniMagick::Image.open("food.jpeg")
result = image.composite(MiniMagick::Image.open("overlay.png", "jpg")) do |c|
  c.gravity "northeast" 
  c.quality "75" 
end

result.write "output_minimagick.jpg" 

↓imagemagickのCLIを使う場合

imagemagick.rb
cmd = "convert food.jpeg overlay.png -gravity northeast -composite -format jpg -quality 75 output_imagemagick.jpg" 
system cmd

###実行速度測定
(480x480の画像にオーバーレイ処理した場合)

$ time ruby mini_magick.rb
real 0m0.438s
user 0m0.288s
sys 0m0.117s

$ time ruby imagemagick.rb
real 0m0.146s
user 0m0.081s
sys 0m0.054s

MiniMagickを使うと、CLIを直接使う場合の約3倍の処理時間がかかりました。
速度を考えるとCLIが最強ですが、MiniMagickを使えば前述のコードのように、CLIを直接呼び出すよりも書きやすくなります。

上記のコードは以下にもアップしてあります。
https://github.com/masawo/minimagick_test

##参考
ImageMagick: Command-line Tools
http://www.imagemagick.org/script/command-line-tools.php

mini_magickとImageMagickで画像を切り取る - 橋本詳解
http://d.hatena.ne.jp/shokai/20120303/1330783040

21
21
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
21
21

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?