Sha256: a47e276b2412c12a1ed02c4b30ef0c0d61813115bab64f1441fe593d8a85941e

Contents?: true

Size: 1.44 KB

Versions: 2

Compression:

Stored size: 1.44 KB

Contents

# frozen_string_literal: true

require 'image_optim/worker'

class ImageOptim
  class Worker
    # http://pmt.sourceforge.net/pngcrush/
    class Pngcrush < Worker
      CHUNKS_OPTION =
      option(:chunks, :alla, Array, 'List of chunks to remove or '\
                                    '`:alla` - all except tRNS/transparency or '\
                                    '`:allb` - all except tRNS and gAMA/gamma') do |v|
        Array(v).map(&:to_s)
      end

      FIX_OPTION =
      option(:fix, false, 'Fix otherwise fatal conditions '\
                          'such as bad CRCs'){ |v| !!v }

      BRUTE_OPTION =
      option(:brute, false, 'Brute force try all methods, '\
                            'very time-consuming and generally not worthwhile'){ |v| !!v }

      BLACKEN_OPTION =
      option(:blacken, true, 'Blacken fully transparent pixels'){ |v| !!v }

      def run_order
        -6
      end

      def optimize(src, dst, options = {})
        flags = %w[
          -reduce
          -cc
          -q
        ]
        chunks.each do |chunk|
          flags.push '-rem', chunk
        end
        flags.push '-fix' if fix
        flags.push '-brute' if brute
        if blacken && resolve_bin!(:pngcrush).version >= '1.7.38'
          flags.push '-blacken'
        end

        args = flags + %W[
          --
          #{src}
          #{dst}
        ]

        execute(:pngcrush, args, options) && optimized?(src, dst)
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
image_optim-0.31.1 lib/image_optim/worker/pngcrush.rb
image_optim-0.31.0 lib/image_optim/worker/pngcrush.rb