Module: DummyImage::Image::ImageBuilder

Extended by:
ImageBuilder
Included in:
ImageBuilder
Defined in:
lib/dummy_image/image.rb

Instance Method Summary collapse

Instance Method Details

#build(width, height, fgcolor, bgcolor, caption, file_path) ⇒ Object



59
60
61
62
# File 'lib/dummy_image/image.rb', line 59

def build width, height, fgcolor, bgcolor, caption, file_path
  system  "convert -size #{width}x#{height} -background '##{bgcolor}' -fill '##{fgcolor}' -gravity Center +pointsize label:' #{caption} ' #{file_path}"

end