
Product
Introducing Rust Support in Socket
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.
discourse_image_optim
Advanced tools
Optimize (lossless compress, optionally lossy) images (jpeg, png, gif, svg) using external utilities:
Based on ImageOptim.app.
Documentation for latest version and master.
gem install image_optim
You may also want to install image_optim_pack
(see Binaries pack).
gem install image_optim_pack
Add to your Gemfile
:
gem 'image_optim'
With image_optim_pack
:
gem 'image_optim'
gem 'image_optim_pack'
With version:
gem 'image_optim', '~> 0.26'
If you want to check latest changes:
gem 'image_optim', :git => 'git://github.com/toy/image_optim.git'
Simplest way for image_optim
to locate binaries is to install them in common location present in PATH
(see Binaries installation).
If you cannot install to common location, then install to custom one and add it to PATH
.
Specify custom bin location using XXX_BIN
environment variable (JPEGOPTIM_BIN
, OPTIPNG_BIN
, …).
Besides permanently setting environment variables in ~/.profile
, ~/.bash_profile
, ~/.bashrc
, ~/.zshrc
, … they can be set:
before command:
PATH="/custom/location:$PATH" image_optim *.jpg
for example:
PATH="/Applications/ImageOptim.app/Contents/MacOS:$PATH" image_optim *.jpg
inside script:
ENV['PATH'] = "/custom/location:#{ENV['PATH']}"; ImageOptim.optimize_images([…])
for example:
ENV['PATH'] = "/Applications/ImageOptim.app/Contents/MacOS:#{ENV['PATH']}"; ImageOptim.optimize_images([…])
Easiest way to get latest versions of most binaries for image_optim
for Linux, Mac OS X, FreeBSD and OpenBSD is by installing image_optim_pack
gem.
Check installation instructions in Gem installation section.
Pack doesn't include pngout
and svgo
binaries, their installation instructions are provided below.
sudo apt-get install -y advancecomp gifsicle jhead jpegoptim libjpeg-progs optipng pngcrush pngquant
If you get an old version of pngquant
, please check how to install up-to-date version or compile from source at http://pngquant.org/.
sudo yum install -y advancecomp gifsicle jhead libjpeg optipng pngquant
You may also need to install libjpeg-turbo-utils
instead of libjpeg
:
sudo yum install -y libjpeg-turbo-utils
You will also need to install jpegoptim
and pngcrush
from source:
Replace X.Y.Z
with latest version number from http://www.kokkonen.net/tjko/projects.html#jpegoptim.
JPEGOPTIM_VERSION=X.Y.Z
cd /tmp
curl -O http://www.kokkonen.net/tjko/src/jpegoptim-$JPEGOPTIM_VERSION.tar.gz
tar zxf jpegoptim-$JPEGOPTIM_VERSION.tar.gz
cd jpegoptim-$JPEGOPTIM_VERSION
./configure && make && make install
Replace X.Y.Z
with latest version number from http://sourceforge.net/projects/pmt/files/pngcrush/.
PNGCRUSH_VERSION=X.Y.Z
cd /tmp
curl -O http://iweb.dl.sourceforge.net/project/pmt/pngcrush/$PNGCRUSH_VERSION/pngcrush-$PNGCRUSH_VERSION.tar.gz
tar zxf pngcrush-$PNGCRUSH_VERSION.tar.gz
cd pngcrush-$PNGCRUSH_VERSION
make && cp -f pngcrush /usr/local/bin
sudo port install advancecomp gifsicle jhead jpegoptim jpeg optipng pngcrush pngquant
brew install advancecomp gifsicle jhead jpegoptim jpeg optipng pngcrush pngquant jonof/kenutils/pngout
If you installed the dependencies via brew, pngout should be installed already. Otherwise, you can install pngout
by downloading and installing the binary versions.
Note: pngout is free to use even in commercial soft, but you can not redistribute, repackage or reuse it without consent and agreement of creator. license
svgo
is available from NPM.
npm install -g svgo
Download and install the jpeg-recompress
binary from the JPEG-Archive Releases page,
or follow the instructions to build from source.
image_optim *.{jpg,png,gif,svg}
image_optim -r .
image_optim -h
Initialize optimizer (or you can call optimization methods directly on ImageOptim
):
image_optim = ImageOptim.new
image_optim = ImageOptim.new(:pngout => false)
image_optim = ImageOptim.new(:nice => 20)
Optimize image getting temp path:
image_optim.optimize_image('a.png')
Optimize image in place:
image_optim.optimize_image!('b.jpg')
Optimize image data:
image_optim.optimize_image_data(data)
Multiple images:
image_optim.optimize_images(Dir['*.png']) do |unoptimized, optimized|
if optimized
puts "#{unoptimized} => #{optimized}"
end
end
image_optim.optimize_images!(Dir['*.*'])
image_optim.optimize_images_data(datas)
Rails image assets optimization is extracted into image_optim_rails gem.
Configuration in YAML format will be read and prepended to options from two paths:
$XDG_CONFIG_HOME/image_optim.yml
(by default ~/.config/image_optim.yml
).image_optim.yml
in current working directoryPaths can be changed using :config_paths
option and --config-paths
argument.
Example configuration:
nice: 20
pngout: false # disable
optipng:
level: 5
:nice
— Nice level, priority of all used tools with higher value meaning lower priority, in range -20..19
, negative values can be set only if run by root user (defaults to 10
):threads
— Number of threads or disable (defaults to number of processors):verbose
— Verbose output (defaults to false
):pack
— Require image_optim_pack or disable it, by default image_optim_pack will be used if available, will turn on :skip-missing-workers
unless explicitly disabled (defaults to nil
):skip_missing_workers
— Skip workers with missing or problematic binaries (defaults to false
):allow_lossy
— Allow lossy workers and optimizations (defaults to false
):cache_dir
— Configure cache directory:cache_worker_digests
- Also cache worker digests along with original file digest and worker options: updating workers invalidates cache:timeout
- Number of seconds before ImageOptim is timed out.Worker can be disabled by passing false
instead of options hash or by setting option :disable
to true
.
:level
— Compression level: 0
- don't compress, 1
- fast, 2
- normal, 3
- extra, 4
- extreme (defaults to 4
):interlace
— Interlace: true
- interlace on, false
- interlace off, nil
- as is in original image (defaults to running two instances, one with interlace off and one with on):level
— Compression level: 1
- light and fast, 2
- normal, 3
- heavy (slower) (defaults to 3
):careful
— Avoid bugs with some software (defaults to false
)Worker has no options
:allow_lossy
— Allow limiting maximum quality (defaults to false
):strip
— List of extra markers to strip: :comments
, :exif
, :iptc
, :icc
or :all
(defaults to :all
):max_quality
— Maximum image quality factor 0
..100
, ignored in default/lossless mode (defaults to 100
):allow_lossy
— Allow worker, it is always lossy (defaults to false
):quality
— JPEG quality preset: 0
- low, 1
- medium, 2
- high, 3
- veryhigh (defaults to 3
):copy_chunks
— Copy all chunks (defaults to false
):progressive
— Create progressive JPEG file (defaults to true
):jpegrescan
— Use jpegtran through jpegrescan, ignore progressive option (defaults to true
):level
— Optimization level preset: 0
is least, 7
is best (defaults to 6
):interlace
— Interlace: true
- interlace on, false
- interlace off, nil
- as is in original image (defaults to false
):strip
— Remove all auxiliary chunks (defaults to true
):chunks
— List of chunks to remove or :alla
- all except tRNS/transparency or :allb
- all except tRNS and gAMA/gamma (defaults to :alla
):fix
— Fix otherwise fatal conditions such as bad CRCs (defaults to false
):brute
— Brute force try all methods, very time-consuming and generally not worthwhile (defaults to false
):blacken
— Blacken fully transparent pixels (defaults to true
):copy_chunks
— Copy optional chunks (defaults to false
):strategy
— Strategy: 0
- xtreme, 1
- intense, 2
- longest Match, 3
- huffman Only, 4
- uncompressed (defaults to 0
):allow_lossy
— Allow quality option (defaults to false
):max_colors
— Maximum number of colors to use (defaults to 256
):quality
— min..max - don't save below min, use less colors below max (both in range 0..100
; in yaml - !ruby/range 0..100
), ignored in default/lossless mode (defaults to 100..100
, 0..100
in lossy mode):speed
— speed/quality trade-off: 1
- slow, 3
- default, 11
- fast & rough (defaults to 3
):disable_plugins
— List of plugins to disable (defaults to []
):enable_plugins
— List of plugins to enable (defaults to []
)List of contributors to image_optim
.
If you would like to contribute - that is great and you are very welcome. Please check few notes in file CONTRIBUTING.markdown.
In separate file CHANGELOG.markdown.
Copyright (c) 2012-2017 Ivan Kuchin. See LICENSE.txt for details.
FAQs
Unknown package
We found that discourse_image_optim demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.
Product
Socket’s precomputed reachability slashes false positives by flagging up to 80% of vulnerabilities as irrelevant, with no setup and instant results.
Product
Socket is launching experimental protection for Chrome extensions, scanning for malware and risky permissions to prevent silent supply chain attacks.