I'm looking for an easy way to get width and height dimensions for image files in Ruby without having to use ImageMagick or ImageScience (running Snow Leapard).
|
libimage-size is a Ruby library for calculating image sizes for a wide variety of graphical formats. A gem is available, or you can download the source tarball and extract the |
|||
|
|
|
You could try these (untested): http://snippets.dzone.com/posts/show/805 PNG:
GIF:
BMP:
JPG:
|
|||||||||||
|
|
There's also a new (July 2011) library that wasn't around at the time the question was originally asked: the Dimensions rubygem (which seems to be authored by the same Sam Stephenson responsible for the byte-manipulation techniques also suggested here.) |
|||
|
|
|
There's a handy method in the paperclip gem:
This only works if
|
|||||
|
|
As of June 2012, another option is FastImage which "finds the size or type of an image given its uri by fetching as little as needed". This includes remote images on another server as well as local images. Usage example from the readme:
|
|||
|
|
|
Here's a version of the JPEG class from ChristopheD's answer that works in both Ruby 1.8.7 and Ruby 1.9. This allows you to get the width and height of a JPEG (.jpg) image file by looking directly at the bits. (Alternatively, just use the Dimensions gem, as suggested in another answer.)
|
|||
|
|
|
I have finally found a nice quick way to get dimensions of an image. You should use MiniMagick.
|
|||||
|