Project

ruby-vips8

0.0
Repository is archived
No commit activity in last 3 years
No release in over 3 years
ruby-vips8 is a ruby extension for vips8. It is extremely fast and it can process huge images without requiring the entire image to be loaded into memory.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.0
~> 2.0
~> 3.3
~> 3.3
~> 0.8

Runtime

 Project Readme

ruby-vips8

❗ ️❗ ❗ ❗ ️❗ ❗ ❗ ️❗ ❗ ❗ ️❗ ❗ ❗ ️❗ ❗ ❗ ️❗ ❗ ❗ ️❗ ❗ ❗ ️❗ ❗ ❗ ️❗ ❗
This gem has been renamed to ruby-vips (version 1.0)

Go here for the current version of this repo: https://github.com/libvips/ruby-vips

All you need to do to switch is (1) update your Gemfile to ask for ruby-vips and (2) change require 'vips8' to require 'vips' (see example below).

# Gemfile
gem 'ruby-vips8', '~> 0.1.0' # OLD
gem 'ruby-vips', '~> 1.0' # NEW

# your-ruby-code.rb
require 'vips8' # OLD
require 'vips' # NEW

Sorry for any inconvenience!

❗ ️❗ ❗ ❗ ️❗ ❗ ❗ ️❗ ❗ ❗ ️❗ ❗ ❗ ️❗ ❗ ❗ ️❗ ❗ ❗ ️❗ ❗ ❗ ️❗ ❗ ❗ ️❗ ❗


This gem provides a Ruby binding for the vips image processing library. It wraps version 8 of the API. The older vips7-based ruby-vips gem is still being maintained.

ruby-vips8 is fast and it can work without needing to have the entire image loaded into memory. Programs that use ruby-vips8 don't manipulate images directly, instead they create pipelines of image processing operations building on a source image. When the end of the pipe is connected to a destination, the whole pipline executes at once, streaming the image in parallel from source to destination a section at a time.

For example, the benchmark at vips-benchmarks loads a large image, crops, shrinks, sharpens and saves again, and repeats 10 times.

real time in seconds, fastest of three runs
benchmark       tiff	jpeg
ruby-vips.rb    2.77	2.98	
ruby-vips8.rb   2.97	3.29	
image-magick    8.18	9.71	
rmagick.rb      9.22	10.06	
image_sci.rb    9.39	7.20	

peak memory use in bytes
benchmark       peak RSS
ruby-vips.rb    107340
ruby-vips8.rb   117604
image_sci.rb    146536
rmagick.rb      3352020

See also benchmarks at the official libvips website. There's a handy blog post explaining how libvips opens files which gives some more background.

Requirements

  • OS X or Linux
  • libvips 8.2 and later

Installation prerequisites

OS X

Install homebrew and enter:

$ brew install homebrew/science/vips

To verify that your vips install is working, try:

$ vips --version
vips-8.2.1

Depending on how your system is configured, you may need to add the directory containing Vips-8.0.typelib to your your GI_TYPELIB_PATH. Something like:

$ export GI_TYPELIB_PATH=/usr/local/lib/girepository-1.0

Other platforms

You need to install libvips from source since 8.2 has not been packaged yet (Jan 2016).

Download a tarball from the libvips website, or build from the git repository and see the README.

Installing the gem.

$ gem install ruby-vips8

or include it in Gemfile:

gem 'ruby-vips8'

And take a look in examples/. There is full yard documentation, take a look there too.

Example

require 'vips8'

im = Vips::Image.new_from_file filename

# put im at position (100, 100) in a 3000 x 3000 pixel image, 
# make the other pixels in the image by mirroring im up / down / 
# left / right, see
# http://www.vips.ecs.soton.ac.uk/supported/current/doc/html/libvips/libvips-conversion.html#vips-embed
im = im.embed 100, 100, 3000, 3000, :extend => :mirror

# multiply the green (middle) band by 2, leave the other two alone
im *= [1, 2, 1]

# make an image from an array constant, convolve with it
mask = Vips::Image.new_from_array [
    [-1, -1, -1],
    [-1, 16, -1],
    [-1, -1, -1]], 8
im = im.conv mask

# finally, write the result back to a file on disk
im.write_to_file output_filename

Changes due to vips7 -> vips8

ruby-vips is based on the old vips7 API. There's now vips8, which adds several very useful new features:

  • GObject-based API with full introspection. You can discover the vips8 API at runtime. This means that if libvips gets a new operator, any binding that goes via vips8 will get the new thing immediately. With vips7, whenever libvips was changed, all the bindings needed to be changed too.

  • No C required. Thanks to gobject-introspection you can write the binding in Ruby itself, there's no need for any C. This makes it a lot smaller and more portable.

  • vips7 probably won't get new features. vips7 doesn't really exist any more: the API is still there, but now just a thin compatibility layer over vips8. New features may well not get added to the vips7 API.

There are some more minor pluses as well:

  • Named and optional arguments. vips8 lets you have optional and required arguments, both input and output, and optional arguments can have default values.

  • Operation cache. vips8 keeps track of the last 1,000 or so operations and will automatically reuse results when it can. This can give a huge speedup in some cases.

  • vips8 is much simpler and more regular. For example, ruby-vips had to work hard to offer a nice loader system, but that's all built into vips8. It can do things like load and save formatted images to and from memory buffers as well, which just wasn't possible before.

This binding adds some extra useful features over the old ruby-vips binding.

  • Full set of arithmetic operator overloads.

  • Automatic constant expansion. You can write things like image.bandjoin(255) and the 255 will be automatically expanded to an image and attached as an extra band. You can mix int, float, scalar, vector and image constants freely.