3
我有用於圖像上傳的回形針的Rails應用程序 - 但是如何檢查圖像是否帶有RMagick的動畫GIF?如何判斷GIF是否爲動畫?
我有用於圖像上傳的回形針的Rails應用程序 - 但是如何檢查圖像是否帶有RMagick的動畫GIF?如何判斷GIF是否爲動畫?
您可以計算與圖像關聯的scenes
。在Rmagick
這意味着要做這樣的事情:
image = Magick::ImageList.new(image_file)
if image.scene == 0
#this is not an animated gif
else
#this is an animated gif
end
可能你的意思是'圖像='' – trushkevich 2014-12-02 06:42:23