Sha256: f7c87084bf321771f0e22f3d3030e5ebb9aecef38412ab7b24dfd904e13e01d3
Contents?: true
Size: 1.25 KB
Versions: 2
Compression:
Stored size: 1.25 KB
Contents
require 'image_optim/worker' class ImageOptim class Worker # http://www.ijg.org/ # # Uses jpegtran through jpegrescan if enabled, jpegrescan is vendored with # this gem class Jpegtran < Worker COPY_CHUNKS_OPTION = option(:copy_chunks, false, 'Copy all chunks'){ |v| !!v } PROGRESSIVE_OPTION = option(:progressive, true, 'Create progressive JPEG file'){ |v| !!v } JPEGRESCAN_OPTION = option(:jpegrescan, false, 'Use jpegtran through jpegrescan, '\ 'ignore progressive option'){ |v| !!v } TIMEOUT_OPTION = timeout_option def used_bins jpegrescan ? [:jpegtran, :jpegrescan] : [:jpegtran] end def optimize(src, dst) if jpegrescan args = %W[ #{src} #{dst} ] args.unshift '-s' unless copy_chunks resolve_bin!(:jpegtran) execute(:jpegrescan, *args) && optimized?(src, dst) else args = %W[ -optimize -outfile #{dst} #{src} ] args.unshift '-copy', (copy_chunks ? 'all' : 'none') args.unshift '-progressive' if progressive execute(:jpegtran, *args) && optimized?(src, dst) end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
discourse_image_optim-0.24.5 | lib/image_optim/worker/jpegtran.rb |
discourse_image_optim-0.24.4 | lib/image_optim/worker/jpegtran.rb |