Sha256: 2d3c7d37616c2171af0ffdaaa13a407e434327c3752957c70890822792024439

Contents?: true

Size: 818 Bytes

Versions: 6

Compression:

Stored size: 818 Bytes

Contents

require 'image_optim/worker'
require 'exifr'

class ImageOptim
  class Worker
    # http://www.sentex.net/~mwandel/jhead/
    #
    # Jhead internally uses jpegtran which should be on path
    class Jhead < Worker
      # Works on jpegs
      def image_formats
        [:jpeg]
      end

      # Run first [-10]
      def run_order
        -10
      end

      def used_bins
        [:jhead, :jpegtran]
      end

      def optimize(src, dst)
        return false unless oriented?(src)
        src.copy(dst)
        args = %W[
          -autorot
          #{dst}
        ]
        resolve_bin!(:jpegtran)
        execute(:jhead, *args) && dst.size?
      end

    private

      def oriented?(image)
        exif = EXIFR::JPEG.new(image.to_s)
        (2..8).include?(exif.orientation.to_i)
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
image_optim-0.20.2 lib/image_optim/worker/jhead.rb
image_optim-0.20.1 lib/image_optim/worker/jhead.rb
image_optim-0.20.0 lib/image_optim/worker/jhead.rb
image_optim-0.19.1 lib/image_optim/worker/jhead.rb
image_optim-0.19.0 lib/image_optim/worker/jhead.rb
image_optim-0.18.0 lib/image_optim/worker/jhead.rb