class Sicily::Util::ImageUtil

Public Class Methods

get_size(path) click to toggle source
# File lib/sicily/util/image_util.rb, line 8
def self.get_size(path)
  size = FastImage.size(path)
  [size[0], size[1]]
end