blob: 122c9de35a80e2b24d4b9e959a58aa5cc700b7d3 [file] [log] [blame]
Brian Silverman6ae77dd2013-03-29 22:28:08 -07001class BMPHeader
2 def initialize(width,height)
3 @width = width
4 @height = height
5 end
6 def text()
7 size = @width * @height * 3
8 return ["BM",size + 54,"\0\0\0\0",54,40,@width,
9 @height,1,24,0,size,2835,2835,0,0].pack("a2Ia4IIIIssIIIIII")
10 end
11end