Sha256: f20e72494df7689cd86bfcdc6d6192d2149896d3bd594f6fd99ad15fd1983a8c

Contents?: true

Size: 606 Bytes

Versions: 4

Compression:

Stored size: 606 Bytes

Contents

require 'image_optim/worker'

class ImageOptim
  class Worker
    class Pngout < Worker
      option(:copy_chunks, false, 'Copy optional chunks'){ |v| !!v }

      option(:strategy, 0, 'Strategy: 0 - xtreme, 1 - intense, 2 - longest Match, 3 - huffman Only, 4 - uncompressed') do |v|
        OptionHelpers.limit_with_range(v.to_i, 0..4)
      end

      # Always run first
      def run_order
        -1
      end

      def optimize(src, dst)
        args = %W[-k#{copy_chunks ? 1 : 0} -s#{strategy} -q -y #{src} #{dst}]
        execute(:pngout, *args) && optimized?(src, dst)
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
image_optim-0.9.1 lib/image_optim/worker/pngout.rb
image_optim-0.9.0 lib/image_optim/worker/pngout.rb
image_optim-0.8.1 lib/image_optim/worker/pngout.rb
image_optim-0.8.0 lib/image_optim/worker/pngout.rb