Skip to content

Instantly share code, notes, and snippets.

View keshihoriuchi's full-sized avatar

Takeshi Horiuchi keshihoriuchi

View GitHub Profile
@keshihoriuchi
keshihoriuchi / image_format_check.rb
Last active August 29, 2015 14:06
画像ファイルフォーマットのチェック
HEADERS = {
[0xFF, 0xD8] => 'jpg',
[0x89, 0x50, 0x4E, 0x47, 0x0D, 0x0A, 0x1A, 0x0A] => 'png',
[0x47, 0x49, 0x46] => 'gif'
}
%w(jpg png gif).each do |suffix|
p suffix
path = File.expand_path("sample.#{suffix}", File.dirname(__FILE__))