我正在使用Ruby on Rails和RewriteCond %{REQUEST_URI} /(hey|hello|hi)$
RewriteRule ^test/([^/.]+)/(.+)$ /test/$1.php/$2 [NC,L]
Gem,如果paper-clip
图片不是动画,我想将.gif
图片转换为.jpeg
.gif
。
这是我的代码:
gif
答案 0 :(得分:0)
我自己解决了。
def check_image_gif?
begin
file = image.instance.image.queued_for_write[:original]
img = Magick::Image.read(file.path)
animation = (img.size>1)
unless animation
image.instance.image_content_type = "image/jpeg"
end
rescue => e
end
image.instance.image_content_type =~ %r(gif) ? true : false
end
我添加了rmagick
宝石。