Module: Drakkon::Images::Modulate

Defined in:
lib/drakkon/lib/images/modulate.rb

Overview

Class Method Summary collapse

Class Method Details

.imagesObject



58
59
60
# File 'lib/drakkon/lib/images/modulate.rb', line 58

def self.images
  Dir["#{Dir.pwd}/**/*.png"]
end

.process(file, amount) ⇒ Object



50
51
52
53
54
55
56
# File 'lib/drakkon/lib/images/modulate.rb', line 50

def self.process(file, amount)
  convert = MiniMagick::Tool::Convert.new
  convert << file
  convert.modulate(amount)
  convert << file
  convert.call
end

.promptObject



62
63
64
# File 'lib/drakkon/lib/images/modulate.rb', line 62

def self.prompt
  TTY::Prompt.new(active_color: :cyan, interrupt: :exit)
end

.run!(args = []) ⇒ Object



6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# File 'lib/drakkon/lib/images/modulate.rb', line 6

def self.run!(args = [])
  # Amount
  amount = if args.empty?
             puts 'Amount Syntax: brightness,saturation,hue'
             prompt.ask('Amount? (e.g. 100,20): ')
           else
             args.shift
           end

  puts <<~HELP
    Usage
    - Run in the directory you wish to modify the images
    - Modulates images via MiniMagick
      -modulate 100,50,80


    Modulate Amount: #{amount}
      Current Directory;
        #{Dir.pwd.pastel(:yellow)}

    Current Directory;
      #{Dir.pwd.pastel(:yellow)}

    Images:
  HELP

  images.sort.each do |img|
    img_s = img.gsub("#{Dir.pwd}/", '').pastel(:yellow)
    puts "  - #{img_s}"
  end
  puts

  exit unless prompt.yes? "#{'Are you sure?'.pastel(:bright_yellow)} Modulate!? #{'(Destructive)'.pastel(:red)}"

  start(amount)
end

.start(amount) ⇒ Object



43
44
45
46
47
48
# File 'lib/drakkon/lib/images/modulate.rb', line 43

def self.start(amount)
  images.each do |img|
    LogBot.info('Image Mod', img)
    process(img, amount)
  end
end