A New Format for Lossless and Lossy Image Compression
Lossless webp images are 26% smaller in size compared to PNG. Lossy webp images are 25-34% smaller in size compared to JPEG. This package reads and writes webp images into a 3 (rgb) or 4 (rgba) channel bitmap array using conventions from the ‘jpeg’ and ‘png’ packages.
Binary packages for OS-X or Windows can be installed directly from CRAN:
install.packages("webp")Installation from source on Linux or OSX requires libwebp. On Debian or Ubuntu install libwebp-dev:
sudo apt-get install -y libwebp-dev
On Fedora we need libwebp-devel:
sudo yum install libwebp-devel
On CentOS / RHEL we install libwebp-devel via EPEL:
sudo yum install epel-release
sudo yum install libwebp-devel
On OS-X use webp from Homebrew:
brew install webp