Ruby确定图像尺寸

时间:2011-04-05 20:15:02

标签: ruby-on-rails ruby paperclip

借口,我如何确定图像尺寸?

示例如果我的图像为“800x600>”

我怎么知道“800x600>”尺寸?

提前致谢

1 个答案:

答案 0 :(得分:1)

假设您正在使用回形针并拥有图像路径。

geo = Paperclip::Geometry.from_file(path_to_image)
geo.width # 800
geo.height # 600