From: Raf Coremans Date: 2007-07-19T20:05:51+09:00 Subject: Re: Validating an Image file is an image file ------=_Part_132557_14064295.1184843154733 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline 2007/7/18, Daniel Berger : > def self.jpg?(file) > IO.read(file, 10) == "\377\330\377\340\000\020JFIF" && > File.extname(file).downcase == '.jpg' > end Ack! The proper abbreviation, and thus also the filename extension, is 'jpeg'. 'jpg' is an abomination introduced by the same people who introduced the *shudder* '.htm' filename extension. R. ------=_Part_132557_14064295.1184843154733--